summaryrefslogtreecommitdiff
path: root/devel
diff options
context:
space:
mode:
authormarkd <markd@pkgsrc.org>2004-02-22 12:12:38 +0000
committermarkd <markd@pkgsrc.org>2004-02-22 12:12:38 +0000
commit3d200c079fdd8082a7e8a722b52d8bb63d30e852 (patch)
tree80fc65f510408c7f9c2ef342fc98f8151d3ce5e2 /devel
parentb0eb69ff1aefff62fa3e68bc289f80e93b150fa4 (diff)
downloadpkgsrc-3d200c079fdd8082a7e8a722b52d8bb63d30e852.tar.gz
On Solaris the configure script doesn't seem to be working out that "nm"
needs "-p" for BSD compatible output so tell it explicitly.
Diffstat (limited to 'devel')
-rw-r--r--devel/libtool-base/Makefile8
1 files changed, 7 insertions, 1 deletions
diff --git a/devel/libtool-base/Makefile b/devel/libtool-base/Makefile
index 83a7fb14f26..d8f6358a8b1 100644
--- a/devel/libtool-base/Makefile
+++ b/devel/libtool-base/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.29 2004/02/18 19:13:30 jlam Exp $
+# $NetBSD: Makefile,v 1.30 2004/02/22 12:12:38 markd Exp $
#
PKGNAME= ${DISTNAME:C/-/-base-/}
@@ -45,6 +45,12 @@ CONFIGURE_ENV+= lt_cv_path_LD=${LD:Q}
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
+.if ${OPSYS} == "SunOS"
+CONFIGURE_ENV+= lt_cv_path_NM="nm -p"
+.endif
+
.if !empty(MACHINE_PLATFORM:MDarwin-*-*)
. include "../../devel/dlcompat/buildlink3.mk"
.endif