From 01cf22bf7e4b7bd5f83c737e05e2f8c432128eae Mon Sep 17 00:00:00 2001 From: david Date: Tue, 18 Jan 2011 19:49:31 +0000 Subject: [PATCH] Quote a parameter for better safety against spaces. --- macosx/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/macosx/Makefile b/macosx/Makefile index 1742b840a..86a9fc220 100644 --- a/macosx/Makefile +++ b/macosx/Makefile @@ -85,7 +85,7 @@ stage-nping: export-$(NPING_BUILD_DIR) # Link against the local MacPorts openssl because the 10.4u SDK doesn't # have EVP_sha256, used by Nping. We let configure find the libraries # dynamically, then link with the static libraries with "make". - cd $(NPING_BUILD_DIR) && ./configure --without-zenmap --without-ncat --without-ndiff --with-nping --with-openssl=$(MACPORTS_PREFIX) $(CONFIGURE_ARGS) + cd $(NPING_BUILD_DIR) && ./configure --without-zenmap --without-ncat --without-ndiff --with-nping --with-openssl="$(MACPORTS_PREFIX)" $(CONFIGURE_ARGS) make -C $(NPING_BUILD_DIR) OPENSSL_LIBS="$(MACPORTS_PREFIX)/lib/libssl.a $(MACPORTS_PREFIX)/lib/libcrypto.a $(MACPORTS_PREFIX)/lib/libz.a" rm -rf $(NPING_STAGING_DIR) make -C $(NPING_BUILD_DIR) install-nping DESTDIR="`pwd`/$(NPING_STAGING_DIR)"