diff options
author | agc <agc@pkgsrc.org> | 1999-03-05 10:05:46 +0000 |
---|---|---|
committer | agc <agc@pkgsrc.org> | 1999-03-05 10:05:46 +0000 |
commit | 2f658cbe0d92ef0d83799065d67543616fc78fca (patch) | |
tree | 1079892310d27414808f6c765bd0b6129834fbc5 /devel/m4 | |
parent | eb9a3c37d13396cc242a64cf251b7b0e9a15c2d5 (diff) | |
download | pkgsrc-2f658cbe0d92ef0d83799065d67543616fc78fca.tar.gz |
Add a patch to configure script so that dots aren't added as a prefix
to an absolute path.
Diffstat (limited to 'devel/m4')
-rw-r--r-- | devel/m4/patches/patch-ac | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/devel/m4/patches/patch-ac b/devel/m4/patches/patch-ac new file mode 100644 index 00000000000..1780aa85a4d --- /dev/null +++ b/devel/m4/patches/patch-ac @@ -0,0 +1,19 @@ +$NetBSD: patch-ac,v 1.1 1999/03/05 10:05:46 agc Exp $ + +Don't try to put dots in front of an absolute pathname. + +--- configure 1999/03/05 09:57:49 1.1 ++++ configure 1999/03/05 09:59:04 +@@ -1996,10 +1996,12 @@ + top_srcdir="$ac_dots$ac_given_srcdir" ;; + esac + ++if false; then + case "$ac_given_INSTALL" in + [/$]*) INSTALL="$ac_given_INSTALL" ;; + *) INSTALL="$ac_dots$ac_given_INSTALL" ;; + esac ++fi + echo creating "$ac_file" + rm -f "$ac_file" + configure_input="Generated automatically from `echo $ac_file_in|sed 's%.*/%%'` by configure." |