diff options
author | ade <ade@FreeBSD.org> | 2004-07-01 05:42:59 +0800 |
---|---|---|
committer | ade <ade@FreeBSD.org> | 2004-07-01 05:42:59 +0800 |
commit | e65c367bccc1964170cd5c50a69d167d4515a22a (patch) | |
tree | 36f270edaa42b8f1c8037968525a68b54a8dd1fe /devel/gnu-autoconf | |
parent | cbbec01225596d461a6532933949f22b7101a7fe (diff) | |
download | freebsd-ports-gnome-e65c367bccc1964170cd5c50a69d167d4515a22a.tar.gz freebsd-ports-gnome-e65c367bccc1964170cd5c50a69d167d4515a22a.tar.zst freebsd-ports-gnome-e65c367bccc1964170cd5c50a69d167d4515a22a.zip |
Fix for auto-creation of an auxiliary directory when using the base
version of perl in 4.x
Whilst the package list isn't affected, PORTREVISION has been bumped
to warn 4.x users -- those on 5.x don't necessarily have to update.
PR: 68509
Submitted by: Martin Kammerhofer <dada@pluto.tugraz.at>
Diffstat (limited to 'devel/gnu-autoconf')
-rw-r--r-- | devel/gnu-autoconf/Makefile | 1 | ||||
-rw-r--r-- | devel/gnu-autoconf/files/patch-autoreconf.in | 7 |
2 files changed, 8 insertions, 0 deletions
diff --git a/devel/gnu-autoconf/Makefile b/devel/gnu-autoconf/Makefile index b2e5c1a61332..59de6f3d2905 100644 --- a/devel/gnu-autoconf/Makefile +++ b/devel/gnu-autoconf/Makefile @@ -7,6 +7,7 @@ PORTNAME= autoconf PORTVERSION= 2.59 +PORTREVISION= 1 CATEGORIES= devel MASTER_SITES= ${MASTER_SITE_GNU} MASTER_SITE_SUBDIR= autoconf diff --git a/devel/gnu-autoconf/files/patch-autoreconf.in b/devel/gnu-autoconf/files/patch-autoreconf.in new file mode 100644 index 000000000000..e0545245db62 --- /dev/null +++ b/devel/gnu-autoconf/files/patch-autoreconf.in @@ -0,0 +1,7 @@ +--- bin/autoreconf.in.orig Fri Oct 3 07:31:23 2003 ++++ bin/autoreconf.in Wed Jun 30 20:15:18 2004 +@@ -488,3 +488,3 @@ + verb "$configure_ac: creating directory $aux_dir"; +- mkdir $aux_dir ++ mkdir $aux_dir, 0777 + or error "cannot create $aux_dir: $!"; |