diff options
author | jschauma <jschauma@pkgsrc.org> | 2004-06-03 23:31:53 +0000 |
---|---|---|
committer | jschauma <jschauma@pkgsrc.org> | 2004-06-03 23:31:53 +0000 |
commit | 2c85477b44821df160c53959540b422d690c8a58 (patch) | |
tree | e5935da9895bd95f7f5dbac6aa5d40720046e5df /devel/libtool-base | |
parent | b720d24fefa3b426076ec64c436aef2176e127bd (diff) | |
download | pkgsrc-2c85477b44821df160c53959540b422d690c8a58.tar.gz |
Tell libtool's configure to use 'nm -B' under IRIX.
This closes PR pkg/25712.
Diffstat (limited to 'devel/libtool-base')
-rw-r--r-- | devel/libtool-base/Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/devel/libtool-base/Makefile b/devel/libtool-base/Makefile index 8488d0290ec..fe1888cfa01 100644 --- a/devel/libtool-base/Makefile +++ b/devel/libtool-base/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.34 2004/05/25 15:17:26 grant Exp $ +# $NetBSD: Makefile,v 1.35 2004/06/03 23:31:53 jschauma Exp $ # PKGNAME= ${DISTNAME:C/-/-base-/} @@ -47,9 +47,11 @@ CONFIGURE_ENV+= SED=${SED:Q} CONFIGURE_ENV+= lt_cv_path_SED=${SED:Q} # The configure script doesn't seem to be working out the need for -p -# so tell it +# or -B, so tell it .if ${OPSYS} == "SunOS" CONFIGURE_ENV+= lt_cv_path_NM="nm -p" +.elif ${OPSYS} == "IRIX" +CONFIGURE_ENV+= lt_cv_path_NM="nm -B" .endif .if ${OPSYS} == "Darwin" |