summaryrefslogtreecommitdiff
path: root/devel/libtool-base
diff options
context:
space:
mode:
authormarkd <markd>2004-02-22 12:12:38 +0000
committermarkd <markd>2004-02-22 12:12:38 +0000
commit7d7a2601f71068e426d3100fbae67cd51b945a23 (patch)
tree80fc65f510408c7f9c2ef342fc98f8151d3ce5e2 /devel/libtool-base
parentb5e4f31285acca8e07a2ae07a54359898b8fd617 (diff)
downloadpkgsrc-7d7a2601f71068e426d3100fbae67cd51b945a23.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/libtool-base')
-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