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 | e343fc9aa6759bc98f3c54ecfdae9052036255f8 (patch) | |
tree | 3871b621ef723586f397f481670724c42ca2650f /x11 | |
parent | 5f10cf7569a99318548df0cadd048bc0f7457543 (diff) | |
download | pkgsrc-e343fc9aa6759bc98f3c54ecfdae9052036255f8.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/ |