diff options
author | dmcmahill <dmcmahill@pkgsrc.org> | 2001-04-09 12:38:42 +0000 |
---|---|---|
committer | dmcmahill <dmcmahill@pkgsrc.org> | 2001-04-09 12:38:42 +0000 |
commit | 193aede90202185b433ae2233445c5919c6ccab7 (patch) | |
tree | a29a6ad01b6aae4bc7ac16633ff037002ea21897 /lang | |
parent | 17e23d525c0b14f76b9bc1bc3f9e113603fcfb45 (diff) | |
download | pkgsrc-193aede90202185b433ae2233445c5919c6ccab7.tar.gz |
one more shared lib fix. corrects ELF symlinks
Diffstat (limited to 'lang')
-rw-r--r-- | lang/f2c/Makefile | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/lang/f2c/Makefile b/lang/f2c/Makefile index 8dffd6075a8..612a5c755fc 100644 --- a/lang/f2c/Makefile +++ b/lang/f2c/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.13 2001/04/09 01:44:38 dmcmahill Exp $ +# $NetBSD: Makefile,v 1.14 2001/04/09 12:38:42 dmcmahill Exp $ DISTNAME= f2c-20001205 PKGNAME= f2c-20001205nb2 @@ -54,10 +54,8 @@ post-patch: .if (${OBJECT_FMT} == "ELF") post-install: - ${LN} -fs ${PREFIX}/lib/libf2c.so.${F2CMAJOR}.${F2CMINOR} \ - ${PREFIX}/lib/libf2c.so.${F2CMAJOR} - ${LN} -fs ${PREFIX}/lib/libf2c.so.${F2CMAJOR}.${F2CMINOR} \ - ${PREFIX}/lib/libf2c.so + cd ${PREFIX}/lib && ${LN} -fs libf2c.so.${F2CMAJOR}.${F2CMINOR} libf2c.so.${F2CMAJOR} + cd ${PREFIX}/lib && ${LN} -fs libf2c.so.${F2CMAJOR}.${F2CMINOR} libf2c.so .endif |