diff options
author | agc <agc> | 1999-03-05 10:05:46 +0000 |
---|---|---|
committer | agc <agc> | 1999-03-05 10:05:46 +0000 |
commit | 2ee6706cfbbdc57fd01182943b4eebbd035177cb (patch) | |
tree | 1079892310d27414808f6c765bd0b6129834fbc5 /devel | |
parent | a3b9bbe8052584fcc97886a7909a88db1c19a19f (diff) | |
download | pkgsrc-2ee6706cfbbdc57fd01182943b4eebbd035177cb.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')
-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." |