diff options
author | sobomax <sobomax@FreeBSD.org> | 2002-03-06 17:53:53 +0800 |
---|---|---|
committer | sobomax <sobomax@FreeBSD.org> | 2002-03-06 17:53:53 +0800 |
commit | 885fba7018e0a80ac6b680c9490a55104bc65bb4 (patch) | |
tree | fa8eb6d07062fb9193d5a776a8f7d658ec8cbbb7 /textproc | |
parent | 1772abd3bfb16ba9aaccab745a53f0abbebee566 (diff) | |
download | freebsd-ports-gnome-885fba7018e0a80ac6b680c9490a55104bc65bb4.tar.gz freebsd-ports-gnome-885fba7018e0a80ac6b680c9490a55104bc65bb4.tar.zst freebsd-ports-gnome-885fba7018e0a80ac6b680c9490a55104bc65bb4.zip |
Unbroke by fixing perl version detection on -stable.
PR: 35357
Submitted by: Joe Marcus Clarke <marcus@marcuscom.com>
Diffstat (limited to 'textproc')
-rw-r--r-- | textproc/intltool/files/patch-configure | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/textproc/intltool/files/patch-configure b/textproc/intltool/files/patch-configure new file mode 100644 index 000000000000..8fb669a7c63b --- /dev/null +++ b/textproc/intltool/files/patch-configure @@ -0,0 +1,14 @@ + +$FreeBSD$ + +--- configure 2002/03/06 09:49:05 1.1 ++++ configure 2002/03/06 09:49:52 +@@ -1238,7 +1238,7 @@ + echo "$as_me: error: perl not found" >&2;} + { (exit 1); exit 1; }; } + fi +-if test -z "`$PERL -v | fgrep 'v5.' 2> /dev/null`" -a -z "`$PERL -v | fgrep 'version 5.' 2> /dev/null`"; then ++if test -z "`$PERL -v | fgrep '5.' 2> /dev/null`" -a -z "`$PERL -v | fgrep 'version 5.' 2> /dev/null`"; then + { { echo "$as_me:1242: error: perl 5.x required for intltool" >&5 + echo "$as_me: error: perl 5.x required for intltool" >&2;} + { (exit 1); exit 1; }; } |