diff options
author | Matthias Hentges <oe@hentges.net> | 2007-03-01 03:59:20 +0000 |
---|---|---|
committer | Matthias Hentges <oe@hentges.net> | 2007-03-01 03:59:20 +0000 |
commit | cdd0e350a24d329c2332ed8e45f6e6ce7d6b1085 (patch) | |
tree | a9b655e844cbf1041cff83743eb55b5710c5e818 | |
parent | 716006a3dc9d250baf3e80a235300367daa2f949 (diff) |
rootfs_ipk.bbclass: All good things...
-rw-r--r-- | classes/rootfs_ipk.bbclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/classes/rootfs_ipk.bbclass b/classes/rootfs_ipk.bbclass index c7b0b6cc1c..43ea5cecd0 100644 --- a/classes/rootfs_ipk.bbclass +++ b/classes/rootfs_ipk.bbclass @@ -42,12 +42,12 @@ rootfs_create_combined_feed() { # Set DEPLOY_ENABLE_OEFEED=1 to use the Packages files from ipk/ARCH/ (fast) OLD_PWD="$PWD" - mkdir -p "${DEPLOY_DIR}/oe-feed" - cd "${DEPLOY_DIR}/oe-feed" || exit 1 # To catch deleted / changed packages, we have to completly rebuild # the symlinks every time. test -d "${DEPLOY_DIR}/oe-feed" && rm -rf "${DEPLOY_DIR}/oe-feed/" + mkdir -p "${DEPLOY_DIR}/oe-feed" + cd "${DEPLOY_DIR}/oe-feed" || exit 1 case "${DEPLOY_ENABLE_OEFEED}" in 1) MAKE_INDEX_TYPE="fast" ;; |