diff options
author | Phil Blundell <philb@gnu.org> | 2004-07-22 21:29:49 +0000 |
---|---|---|
committer | Phil Blundell <philb@gnu.org> | 2004-07-22 21:29:49 +0000 |
commit | 68695da69c3e7a2c59fcd2ae02b3e88ab3f5d976 (patch) | |
tree | 0bf4db84debc96e2dc22af2e6f23fadf410cb03a /meta | |
parent | 86918c81388cfcbf11aed837e492fb184c72497e (diff) |
correct fatal confusion between HOST and TARGET
BKrev: 410031cdaYy2DFYABkXCh67-_6Drdw
Diffstat (limited to 'meta')
-rw-r--r-- | meta/meta-sdk.oe | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/meta/meta-sdk.oe b/meta/meta-sdk.oe index 94ffd75efa..b31dedee7f 100644 --- a/meta/meta-sdk.oe +++ b/meta/meta-sdk.oe @@ -6,7 +6,7 @@ SDK_DIR = "${TMPDIR}/sdk" SDK_OUTPUT = "${SDK_DIR}/image" IPKG_HOST = "ipkg-cl -f ${SDK_DIR}/ipkg-host.conf -o ${SDK_OUTPUT}" -IPKG_TARGET = "ipkg-cl -f ${SDK_DIR}/ipkg-host.conf -o ${SDK_OUTPUT}/${prefix}" +IPKG_TARGET = "ipkg-cl -f ${SDK_DIR}/ipkg-target.conf -o ${SDK_OUTPUT}/${prefix}" do_populate_sdk() { touch ${DEPLOY_DIR_IPK}/Packages @@ -15,11 +15,11 @@ do_populate_sdk() { rm -rf ${SDK_OUTPUT} mkdir -p ${SDK_OUTPUT} - cat <<EOF >>${SDK_DIR}/ipkg-host.conf + cat <<EOF >${SDK_DIR}/ipkg-host.conf src oe file:${DEPLOY_DIR_IPK} arch ${BUILD_ARCH} 1 EOF - cat <<EOF >>${SDK_DIR}/ipkg-target.conf + cat <<EOF >${SDK_DIR}/ipkg-target.conf src oe file:${DEPLOY_DIR_IPK} arch ${TARGET_ARCH} 1 EOF |