diff options
author | Matthias Hentges <oe@hentges.net> | 2004-10-03 13:03:07 +0000 |
---|---|---|
committer | Matthias Hentges <oe@hentges.net> | 2004-10-03 13:03:07 +0000 |
commit | b8be9213a8bbea287130569f09631eb08d58fc9f (patch) | |
tree | 21c1baba291f8872553f40edb4980e09b2bb0820 /classes | |
parent | 15dd8f432557d4914e0d9076004533dc33f63e69 (diff) |
Remove case , as OE already does the work for us, bump oipie-image.oe PR
BKrev: 415ff88bY3DxDSkHnaNvpMbn10sbvA
Diffstat (limited to 'classes')
-rw-r--r-- | classes/image_ipk.oeclass | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/classes/image_ipk.oeclass b/classes/image_ipk.oeclass index 597d9d82d9..07c4e83d6c 100644 --- a/classes/image_ipk.oeclass +++ b/classes/image_ipk.oeclass @@ -51,14 +51,7 @@ fakeroot do_rootfs () { insert_feed_uris () { echo "Building feeds for [${DISTRO}].." - - case "${DISTRO}" in - openzaurus*) FEED_URIS_="$FEED_URIS_openzaurus";; - familiar*) FEED_URIS_="$FEED_URIS_familiar";; - esac - - ! test -z "$FEED_URIS_" && FEED_URIS="$FEED_URIS_" - + for line in ${FEED_URIS} do # strip leading and trailing spaces/tabs, then split into name and uri |