diff options
author | salo <salo@pkgsrc.org> | 2003-09-23 14:44:43 +0000 |
---|---|---|
committer | salo <salo@pkgsrc.org> | 2003-09-23 14:44:43 +0000 |
commit | 01d6befc359eb7bb4d2a4be100424712b78e5e0a (patch) | |
tree | ee9f15a856ef4da7fd35cef1fb8356bed1e28548 /devel/m4/patches | |
parent | 20360d359cdc9c9d90ee1b7ca942dc29885cbe30 (diff) | |
download | pkgsrc-01d6befc359eb7bb4d2a4be100424712b78e5e0a.tar.gz |
Make sure that only base name of the make program is used to construct
the variable name.
Fixes build on bootstrap-pkgsrc systems, closes pkg/22918 from MLH.
Diffstat (limited to 'devel/m4/patches')
-rw-r--r-- | devel/m4/patches/patch-ac | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/devel/m4/patches/patch-ac b/devel/m4/patches/patch-ac new file mode 100644 index 00000000000..f9188267131 --- /dev/null +++ b/devel/m4/patches/patch-ac @@ -0,0 +1,13 @@ +$NetBSD: patch-ac,v 1.3 2003/09/23 14:44:44 salo Exp $ + +--- configure.orig 1994-11-06 04:44:17.000000000 +0100 ++++ configure 2003-09-23 16:11:15.000000000 +0200 +@@ -610,7 +610,7 @@ + test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644' + + echo $ac_n "checking whether ${MAKE-make} sets \$MAKE""... $ac_c" 1>&4 +-set dummy ${MAKE-make}; ac_make=$2 ++set dummy `basename ${MAKE-make}`; ac_make=$2 + if eval "test \"`echo '${'ac_cv_prog_make_${ac_make}_set'+set}'`\" = set"; then + echo $ac_n "(cached) $ac_c" 1>&4 + else |