From: Michael Tremer Date: Fri, 11 Feb 2011 13:44:12 +0000 (+0100) Subject: build-essentials: Fix processing of user entered dependencies. X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ccbbe72b99cc25eec776657368bcaf1bba9fc272;p=ipfire-3.x.git build-essentials: Fix processing of user entered dependencies. --- diff --git a/pkgs/core/build-essentials/build-essentials.nm b/pkgs/core/build-essentials/build-essentials.nm index aba3e2bcc..2e2418826 100644 --- a/pkgs/core/build-essentials/build-essentials.nm +++ b/pkgs/core/build-essentials/build-essentials.nm @@ -26,7 +26,7 @@ include $(PKGROOT)/Include PKG_NAME = build-essentials PKG_VER = $(DISTRO_VERSION) -PKG_REL = 2 +PKG_REL = 3 PKG_ARCH = noarch PKG_MAINTAINER = Michael Tremer diff --git a/pkgs/core/build-essentials/buildsystem-tools/functions-packager-find b/pkgs/core/build-essentials/buildsystem-tools/functions-packager-find index bc97483cf..c49b041a0 100644 --- a/pkgs/core/build-essentials/buildsystem-tools/functions-packager-find +++ b/pkgs/core/build-essentials/buildsystem-tools/functions-packager-find @@ -46,7 +46,7 @@ function find_requires() { # Return a sorted and unique(!) list local require local requires - for require in $(listsort ${PKG_DEPS} ${interpreters} ${neededs} ${links} ${others}); do + for require in $(listsort ${PKG_DEPENDENCIES} ${interpreters} ${neededs} ${links} ${others}); do [ "${require:0:3}" = "ld-" ] && continue listmatch ${require} ${provides} || requires="${requires} ${require}" done