diff options
author | reed <reed@pkgsrc.org> | 2007-03-19 16:47:43 +0000 |
---|---|---|
committer | reed <reed@pkgsrc.org> | 2007-03-19 16:47:43 +0000 |
commit | b5a3a56776d73c27009211d73dfd41280adddd4f (patch) | |
tree | ae38cdd0ee75fa61dcef21efe0ff3cc9368e2a5f /graphics/Mesa | |
parent | 6912785d50d6148e0843310bd0b065bc93868708 (diff) | |
download | pkgsrc-b5a3a56776d73c27009211d73dfd41280adddd4f.tar.gz |
Use MAKE_ENV when doing the libtool during the install.
This fixes failure to install MesaLibs package.
This is the same problem (but different package) as my PR #36020.
Diffstat (limited to 'graphics/Mesa')
-rw-r--r-- | graphics/Mesa/Makefile.lib | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/graphics/Mesa/Makefile.lib b/graphics/Mesa/Makefile.lib index 778d9d6a7bf..a03e8d5c4c5 100644 --- a/graphics/Mesa/Makefile.lib +++ b/graphics/Mesa/Makefile.lib @@ -1,4 +1,4 @@ -# $NetBSD: Makefile.lib,v 1.3 2007/01/18 10:24:45 rillig Exp $ +# $NetBSD: Makefile.lib,v 1.4 2007/03/19 16:47:43 reed Exp $ # # This Makefile fragment is included by all packages that build libraries # from the Mesa sources. @@ -48,6 +48,7 @@ Mesa-install-libs: @${TEST} -z ${INSTLIBS:M*:Q}"" || ${ECHO_MSG} "Installing libraries." @for lib in "" ${INSTLIBS}; do \ ${TEST} -n "$$lib" || continue; \ + ${SETENV} ${MAKE_ENV} \ ${LIBTOOL} --mode=install ${INSTALL_LIB} \ $$lib ${DESTDIR}${PREFIX}/lib; \ done |