summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorgrant <grant@pkgsrc.org>2003-03-31 08:41:06 +0000
committergrant <grant@pkgsrc.org>2003-03-31 08:41:06 +0000
commit94d3410739a890530dbf010c00f8b2e9b8a4f497 (patch)
tree6f9f2a7ae934696a4f244072afb07737a49ec168
parentac1d4c7e507cf55070670ac1487f55c08b699afa (diff)
downloadpkgsrc-94d3410739a890530dbf010c00f8b2e9b8a4f497.tar.gz
run ranlib in the install target, to appease Darwin's linker.
-rw-r--r--pkgtools/libnbcompat/files/Makefile.in6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgtools/libnbcompat/files/Makefile.in b/pkgtools/libnbcompat/files/Makefile.in
index a69e5e7f2ae..945c9c2d7a9 100644
--- a/pkgtools/libnbcompat/files/Makefile.in
+++ b/pkgtools/libnbcompat/files/Makefile.in
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile.in,v 1.2 2003/03/31 05:34:35 grant Exp $
+# $NetBSD: Makefile.in,v 1.3 2003/03/31 08:41:06 grant Exp $
#
srcdir = @srcdir@
@@ -34,7 +34,6 @@ all: ${LIB}
${LIB}: ${OBJS}
${AR} cr $@ ${OBJS}
- ${RANLIB} $@
nbtypes.h: bits
./bits nbtypes.h
@@ -43,7 +42,8 @@ bits: bits.c
${CC} -o bits bits.c
install:
- ${INSTALL} -m 555 libnbcompat.a ${prefix}/lib
+ ${INSTALL} -m 555 ${LIB} ${prefix}/lib
+ ${RANLIB} ${prefix}/lib/${LIB}
${INSTALL} -m 755 -d ${prefix}/include/libnbcompat
${INSTALL} -m 444 extern.h ${prefix}/include/libnbcompat
${INSTALL} -m 444 ftpglob.h ${prefix}/include/libnbcompat