From a646fc8b235a4159302ff9166ea3e2b8cc80f558 Mon Sep 17 00:00:00 2001 From: Dan Nelson <dnelson@emsphone.com> Date: Fri, 8 Jul 2005 12:59:17 -0500 Subject: [PATCH] CONFIGUREARGS fix for Solaris make. Thanks to Dan Nelson <dan@emsphone.com>. Rev: Makefile:1.151 --- Makefile | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 72697a7b86..59af4497a5 100644 --- a/Makefile +++ b/Makefile @@ -1,11 +1,11 @@ # -# $Id: Makefile,v 1.150 2005/06/21 09:53:27 grubba Exp $ +# $Id: Makefile,v 1.151 2005/07/08 17:59:17 grubba Exp $ # # Meta Makefile # # Use this to pass arguments to configure. Leave empty to keep previous args. -CONFIGUREARGS=`echo $${CONFIGUREARGS-}` +#CONFIGUREARGS= # Set this to any generic make options you'd otherwise would have to # pass on the command line. (Using the magic MAKEFLAGS variable @@ -16,7 +16,7 @@ CONFIGUREARGS=`echo $${CONFIGUREARGS-}` # Set to a flag for parallelizing make, e.g. -j2. It's given to make # at the level where it's most effective. (Don't use when the make # program has smart job control, e.g. GNU make.) -MAKE_PARALLEL= +#MAKE_PARALLEL= VPATH=. OS=`uname -s -r -m|sed \"s/ /-/g\"|tr \"[A-Z]\" \"[a-z]\"|tr \"/()\" \"___\"` @@ -410,3 +410,7 @@ pikefun_TAGS: `find . -type f -name '*.[ch]' -print` cd lib/modules && ../../bin/pike_etags.sh \ `find . -type f '(' -name '*.pmod' -o -name '*.pike' ')' -print` + +test: + echo CONFIGUREARGS:"$(CONFIGUREARGS)" + echo "$${CONFIGUREARGS}" -- GitLab