From 04eb90335591d97660beb2fa4a4998d1f9160a3b Mon Sep 17 00:00:00 2001 From: dmiller Date: Sat, 7 Nov 2015 01:00:21 +0000 Subject: [PATCH] Fix the dylib path check. Was always returning true. --- macosx/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/macosx/Makefile b/macosx/Makefile index 20f9160bb..6fe469a14 100644 --- a/macosx/Makefile +++ b/macosx/Makefile @@ -76,7 +76,7 @@ $(IMAGE_STAGING_DIR)/$(PKG_NAME): check-nmap check-ncat check-ndiff check-zenmap $(PACKAGEMAKER) --doc nmap.pmdoc --title "Nmap $(NMAP_VERSION)" --no-relocate -o $@ check-%: stage-% - find $* -perm -a+x -type f | xargs otool -L | grep "$(MACPORTS_PREFIX)" && false || echo "Libs are clean" + if (find $* -perm -a+x -type f | xargs otool -L | grep "$(MACPORTS_PREFIX)"); then false; else echo "Libs are clean"; fi export-%: rm -rf $*