diff options
author | netchild <netchild@FreeBSD.org> | 2003-12-14 11:09:21 +0000 |
---|---|---|
committer | netchild <netchild@FreeBSD.org> | 2003-12-14 11:09:21 +0000 |
commit | a25b5d82eccec1ef743e3c8ef9461b542ec190ff (patch) | |
tree | 8fdfa861ece8c6ac7e6c6650f3a2ddc459234187 /databases/firebird20-server | |
parent | 51c89f3092ef0af181b624d8c8b71cfacebec68e (diff) | |
download | FreeBSD-ports-a25b5d82eccec1ef743e3c8ef9461b542ec190ff.zip FreeBSD-ports-a25b5d82eccec1ef743e3c8ef9461b542ec190ff.tar.gz |
Fix bento build by adding the missing patch.
Submitted by: maintainer
Noticed by: kris (bento)
Pointy hat to: netchild
Diffstat (limited to 'databases/firebird20-server')
-rw-r--r-- | databases/firebird20-server/files/patch-autogen.sh | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/databases/firebird20-server/files/patch-autogen.sh b/databases/firebird20-server/files/patch-autogen.sh new file mode 100644 index 0000000..9b7c52d --- /dev/null +++ b/databases/firebird20-server/files/patch-autogen.sh @@ -0,0 +1,26 @@ +--- autogen.sh.orig Fri Apr 18 04:41:28 2003 ++++ autogen.sh Sun Aug 24 18:39:45 2003 +@@ -20,7 +20,7 @@ + ;; + esac + +-VER=`libtool --version|grep ' libtool)'|sed 's/.*) \([0-9][0-9.]*\) .*/\1/'` ++VER=`libtool13 --version|grep ' libtool)'|sed 's/.*) \([0-9][0-9.]*\) .*/\1/'` + case "$VER" in + 0* | 1\.[0-2] | 1\.[0-2][a-z]* | \ + 1\.3\.[0-2] | 1\.3\.[0-2][a-z]* ) +@@ -50,12 +50,12 @@ + + # Generate configure from configure.in + echo "Running libtoolize ..." +-LIBTOOL_M4=`libtoolize --copy --force --dry-run|grep 'You should add the contents of'|sed "s,^[^/]*\(/[^']*\).*$,\1,"` ++LIBTOOL_M4=`libtoolize13 --copy --force --dry-run|grep 'You should add the contents of'|sed "s,^[^/]*\(/[^']*\).*$,\1,"` + if test "x$LIBTOOL_M4" != "x"; then + rm -f aclocal.m4 + cp $LIBTOOL_M4 aclocal.m4 + fi +-libtoolize --copy --force || exit 1 ++libtoolize13 --copy --force || exit 1 + + echo "Running autoconf ..." + autoconf || exit 1 |