diff options
author | mezz <mezz@FreeBSD.org> | 2009-07-15 12:52:12 +0800 |
---|---|---|
committer | mezz <mezz@FreeBSD.org> | 2009-07-15 12:52:12 +0800 |
commit | ce5df66af6bacaad886737db823c2c6ae1baf510 (patch) | |
tree | a02bcfe5717b8d598a22cff6934c447a2f6a4fb5 /textproc | |
parent | f853c0ad186fab278662cedd2d0a6a2e5e82993d (diff) | |
download | freebsd-ports-gnome-ce5df66af6bacaad886737db823c2c6ae1baf510.tar.gz freebsd-ports-gnome-ce5df66af6bacaad886737db823c2c6ae1baf510.tar.zst freebsd-ports-gnome-ce5df66af6bacaad886737db823c2c6ae1baf510.zip |
Fix the installation w/ libtool 2.2.
Diffstat (limited to 'textproc')
-rw-r--r-- | textproc/mxml/files/patch-libtool22 | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/textproc/mxml/files/patch-libtool22 b/textproc/mxml/files/patch-libtool22 new file mode 100644 index 000000000000..d71df8100ed9 --- /dev/null +++ b/textproc/mxml/files/patch-libtool22 @@ -0,0 +1,15 @@ +--- Makefile.in.orig 2009-07-14 23:48:58.000000000 -0500 ++++ Makefile.in 2009-07-14 23:49:34.000000000 -0500 +@@ -59,10 +59,10 @@ + # Install commands... + # + +-INSTALL_BIN = $(LIBTOOL) $(INSTALL) -m 755 -s ++INSTALL_BIN = $(LIBTOOL) --mode=install $(INSTALL) -m 755 -s + INSTALL_DATA = $(INSTALL) -m 644 + INSTALL_DIR = $(INSTALL) -d +-INSTALL_LIB = $(LIBTOOL) $(INSTALL) -m 755 ++INSTALL_LIB = $(LIBTOOL) --mode=install $(INSTALL) -m 755 + INSTALL_MAN = $(INSTALL) -m 644 + INSTALL_SCRIPT = $(INSTALL) -m 755 + |