[pkg-opensc-commit] [opensc] 102/295: MacOSX/build-package: fix build for make multi jobs

Eric Dorland eric at moszumanska.debian.org
Sat Jun 24 21:11:20 UTC 2017


This is an automated email from the git hooks/post-receive script.

eric pushed a commit to branch master
in repository opensc.

commit b1aa79058a59e6dd80d9505e017fe3a05755bd84
Author: Ludovic Rousseau <ludovic.rousseau+github at gmail.com>
Date:   Fri Oct 14 14:12:15 2016 +0200

    MacOSX/build-package: fix build for make multi jobs
    
    If --jobs=... argument is used for make (or the equivalent MAKEFLAGS is
    defined) then the command "make clean update depend" fails because the 3
    actions must be done in sequence and not in parallel.
---
 MacOSX/build-package.in | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/MacOSX/build-package.in b/MacOSX/build-package.in
index 2a8daee..2939024 100755
--- a/MacOSX/build-package.in
+++ b/MacOSX/build-package.in
@@ -30,7 +30,9 @@ if ! pkg-config libcrypto --atleast-version=1.0.1; then
 		fi
 		cd openssl
 		KERNEL_BITS=64 ./config --prefix=$PREFIX -mmacosx-version-min=10.10
-		make clean update depend
+		make clean
+		make update
+		make depend
 		make
 		make INSTALL_PREFIX=$BUILDPATH/openssl_bin install_sw
 		cd ..

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-opensc/opensc.git



More information about the pkg-opensc-commit mailing list