diff options
author | Felix Fietkau <nbd@openwrt.org> | 2007-07-16 00:01:40 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2007-07-16 00:01:40 +0000 |
commit | 645f36ed63a1b04164337e8859405cfa34956634 (patch) | |
tree | b503cb03fc310c2f74d44a42c32fb8ed2d55379d /scripts | |
parent | 7a8aa7ccd8401f7e3f3df529da9d14108fc69316 (diff) | |
download | upstream-645f36ed63a1b04164337e8859405cfa34956634.tar.gz upstream-645f36ed63a1b04164337e8859405cfa34956634.tar.bz2 upstream-645f36ed63a1b04164337e8859405cfa34956634.zip |
keep some structure when running package/symlinks - now that the build system supports it
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@7986 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/feeds.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/feeds.sh b/scripts/feeds.sh index a6d4ef9d71..e21c204c25 100755 --- a/scripts/feeds.sh +++ b/scripts/feeds.sh @@ -30,7 +30,7 @@ setup_symlinks() { # so that we can make this structure be flat in $PACKAGE_DIR for dir in $(ls $1/) do - ln -s $1/$dir/*/* $2/ + ln -s $1/$dir/* $2/ done } |