diff options
author | joerg <joerg@pkgsrc.org> | 2015-06-25 07:43:09 +0000 |
---|---|---|
committer | joerg <joerg@pkgsrc.org> | 2015-06-25 07:43:09 +0000 |
commit | 03b28cd79794b6b02b70a0dc0e998855ea40628a (patch) | |
tree | 3871b621ef723586f397f481670724c42ca2650f /x11 | |
parent | 821152926cafccb56100f979db142ed111bc05eb (diff) | |
download | pkgsrc-03b28cd79794b6b02b70a0dc0e998855ea40628a.tar.gz |
Explicitly specify order for library installation, since libUtils.la is
used by others and needs to be installed before to allow relinking.
Diffstat (limited to 'x11')
-rw-r--r-- | x11/qt4-creator/Makefile | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/x11/qt4-creator/Makefile b/x11/qt4-creator/Makefile index 3e7687bed24..a4d45eb08b7 100644 --- a/x11/qt4-creator/Makefile +++ b/x11/qt4-creator/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.29 2015/04/25 14:25:16 tnn Exp $ +# $NetBSD: Makefile,v 1.30 2015/06/25 07:43:09 joerg Exp $ DISTNAME= qt-creator-2.0.1-src PKGNAME= ${DISTNAME:S/qt-/qt4-/:S/-src//} @@ -40,9 +40,12 @@ do-install: ${LIBTOOL} --mode=install \ ${INSTALL_PROGRAM} ${WRKSRC}/bin/qtcreator_process_stub \ ${DESTDIR}${PREFIX}/bin/ +.for lib in Utils Aggregation ExtensionSystem QtConcurrent CPlusPlus Net7ssh \ + DebuggingHelper QmlJS symbianutils ${LIBTOOL} --mode=install \ - ${INSTALL_LIB} ${WRKSRC}/lib/qtcreator/*.la \ + ${INSTALL_LIB} ${WRKSRC}/lib/qtcreator/lib${lib}.la \ ${DESTDIR}${PREFIX}/lib/qtcreator/ +.endfor ${LIBTOOL} --mode=install \ ${INSTALL_LIB} ${WRKSRC}/lib/qtcreator/plugins/Nokia/*.la \ ${DESTDIR}${PREFIX}/lib/qtcreator/plugins/Nokia/ |