summaryrefslogtreecommitdiff
path: root/math
diff options
context:
space:
mode:
authorjschauma <jschauma@pkgsrc.org>2002-09-26 15:46:47 +0000
committerjschauma <jschauma@pkgsrc.org>2002-09-26 15:46:47 +0000
commit8f5616e1a9726b07cc68b4fd0a003e9b8b1a8e13 (patch)
tree2a37bba89effebea7773fe793dea1a8244882258 /math
parent09871069e50e64383d3177adced27d904634b02f (diff)
downloadpkgsrc-8f5616e1a9726b07cc68b4fd0a003e9b8b1a8e13.tar.gz
Patch Makefile to quote variables.
This prevents the compiler to bail out if the user has set CFLAGS=-O2 -mcpu=pentiumpro -march=pentium for example.
Diffstat (limited to 'math')
-rw-r--r--math/abs/distinfo4
-rw-r--r--math/abs/patches/patch-aa14
2 files changed, 12 insertions, 6 deletions
diff --git a/math/abs/distinfo b/math/abs/distinfo
index 3029716096a..4a1b733a241 100644
--- a/math/abs/distinfo
+++ b/math/abs/distinfo
@@ -1,6 +1,6 @@
-$NetBSD: distinfo,v 1.2 2001/04/19 08:45:37 agc Exp $
+$NetBSD: distinfo,v 1.3 2002/09/26 15:46:47 jschauma Exp $
SHA1 (abs-src-0.8.tar.gz) = 2123f3c80981a9fe7535645ed8b9726d81751157
Size (abs-src-0.8.tar.gz) = 287965 bytes
-SHA1 (patch-aa) = 935e9e492c246a861680f0a9632fe1e7a9ad3423
+SHA1 (patch-aa) = 06f3adca298ebba3ce5ffe801342e870ceaf9a58
SHA1 (patch-ab) = 89e02f62b116d49a87011ff5a7aac304e8a980f4
diff --git a/math/abs/patches/patch-aa b/math/abs/patches/patch-aa
index b9ccebd9913..84527640fcc 100644
--- a/math/abs/patches/patch-aa
+++ b/math/abs/patches/patch-aa
@@ -1,7 +1,7 @@
-$NetBSD: patch-aa,v 1.4 2000/11/17 07:36:34 rh Exp $
+$NetBSD: patch-aa,v 1.5 2002/09/26 15:46:47 jschauma Exp $
---- Makefile.netBSD.orig Wed Nov 15 20:59:20 2000
-+++ Makefile.netBSD
+--- Makefile.netBSD.orig Wed Nov 15 14:59:20 2000
++++ Makefile.netBSD Thu Sep 26 11:42:57 2002
@@ -1,24 +1,24 @@
CURRENT_DIR = .
@@ -32,7 +32,13 @@ $NetBSD: patch-aa,v 1.4 2000/11/17 07:36:34 rh Exp $
#for hp Ccompiler = c89
Ccompiler = cc
-@@ -35,8 +35,8 @@
+@@ -30,13 +30,13 @@
+ if [ -d $$i ] ; \
+ then \
+ (cd $$i ; echo "making" all "in $(CURRENT_DIR)/$$i..."; \
+- $(MAKE) TOPCFLAGS=$(CFLAGS) IncludeDir=$(IncludeDir) Ccompiler=$(Ccompiler) DEFINE=$(DEFINE) all); \
++ $(MAKE) TOPCFLAGS="$(CFLAGS)" IncludeDir="$(IncludeDir)" Ccompiler="$(Ccompiler)" DEFINE="$(DEFINE)" all); \
+ fi \
done
cc -o abs ./Plot/*.o ./ABV/*.o \
Fig/*.o Interface/*.o X11/xedit/*.o \