From: Michael Tremer Date: Fri, 13 Mar 2009 10:34:27 +0000 (+0100) Subject: Ignore symlinked packages. X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3b611605cea5ffcf5e056c01a98b90d277322c40;p=ipfire-3.x.git Ignore symlinked packages. --- diff --git a/tools/make-packages b/tools/make-packages index a9759f766..0acf54588 100644 --- a/tools/make-packages +++ b/tools/make-packages @@ -47,6 +47,7 @@ pkg_list_packages() { echo "#### List of softwares used to build $NAME Version: $VERSION ####" local package for i in $BASEDIR/lfs/*; do + [ -L "$i" ] && continue package=$(basename $i) ( unset NAME VERSION eval $(pkg_info ${package}) @@ -62,6 +63,7 @@ pkg_list_packages_wiki() { echo "====== List of softwares used to build $NAME Version: $VERSION ======" local package for i in $BASEDIR/lfs/*; do + [ -L "$i" ] && continue package=$(basename $i) ( unset NAME VERSION eval $(pkg_info ${package})