diff options
author | joerg <joerg> | 2009-09-02 13:32:56 +0000 |
---|---|---|
committer | joerg <joerg> | 2009-09-02 13:32:56 +0000 |
commit | 279620511619193e04b88aed51325d6602af0c0f (patch) | |
tree | 7406a41195b82878725376ace87d6899852b28ec /x11/qt3-tools/Makefile | |
parent | c3aa3751e89efe979e2ea1bd40d04fcc9f57ca00 (diff) | |
download | pkgsrc-279620511619193e04b88aed51325d6602af0c0f.tar.gz |
Explicitly call libtool with --mode=install.
Diffstat (limited to 'x11/qt3-tools/Makefile')
-rw-r--r-- | x11/qt3-tools/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/x11/qt3-tools/Makefile b/x11/qt3-tools/Makefile index 8d46c6242e8..ba7cee3a30a 100644 --- a/x11/qt3-tools/Makefile +++ b/x11/qt3-tools/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.58 2009/08/26 19:56:48 sno Exp $ +# $NetBSD: Makefile,v 1.59 2009/09/02 13:32:56 joerg Exp $ PKG_DESTDIR_SUPPORT= user-destdir @@ -31,16 +31,16 @@ USE_TOOLS+= pax do-install: for bin in assistant designer linguist lrelease lupdate qm2ts \ qmake qtconfig uic; do \ - ${LIBTOOL} ${INSTALL_PROGRAM} ${WRKSRC}/bin/$$bin \ + ${LIBTOOL} --mode=install ${INSTALL_PROGRAM} ${WRKSRC}/bin/$$bin \ ${DESTDIR}${QTPREFIX}/bin; \ done for lib in libeditor.la libqassistantclient.la libqui.la; do \ - ${LIBTOOL} ${INSTALL_PROGRAM} ${WRKSRC}/lib/$$lib \ + ${LIBTOOL} --mode=install ${INSTALL_PROGRAM} ${WRKSRC}/lib/$$lib \ ${DESTDIR}${QTPREFIX}/lib; \ done for plugin in libwizards.la libcppeditor.la libdlgplugin.la \ librcplugin.la libkdevdlgplugin.la; do \ - ${LIBTOOL} ${INSTALL_PROGRAM} \ + ${LIBTOOL} --mode=install ${INSTALL_PROGRAM} \ ${WRKSRC}/plugins/designer/$$plugin \ ${DESTDIR}${QTPREFIX}/plugins/designer; \ done |