From 84e64aa7b5923da00e4b4598f4f90ddd72734228 Mon Sep 17 00:00:00 2001 From: Hans-Christoph Steiner Date: Mon, 12 Mar 2012 02:05:22 +0000 Subject: use = instead of := for getting the results of dpkg-shlibdeps so that the command is only run when its actually needed ( := was making it run everytime) svn path=/trunk/; revision=16069 --- packages/linux_make/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'packages') diff --git a/packages/linux_make/Makefile b/packages/linux_make/Makefile index 06ac5b4f..58bc97de 100755 --- a/packages/linux_make/Makefile +++ b/packages/linux_make/Makefile @@ -23,7 +23,7 @@ endif ifeq ($(PACKAGE_TYPE),deb) prefix = /usr # generates the dependencies for all externals and pd itself - PACKAGE_DEPENDS := $(shell find $(DESTDIR) \( -name "*.pd_linux" -or -name pd-gui -or -wholename \*bin/pd \) -print0 | xargs -0 dpkg-shlibdeps -O | sed 's|shlibs:Depends=|, |' ) + PACKAGE_DEPENDS = $(shell find $(DESTDIR) \( -name "*.pd_linux" -or -name pd-gui -or -wholename \*bin/pd \) -print0 | xargs -0 dpkg-shlibdeps -O | sed 's|shlibs:Depends=|, |' ) else prefix = /usr/local endif -- cgit v1.2.1