diff options
author | Pawel Pekala <pawel@FreeBSD.org> | 2017-07-27 15:07:48 +0000 |
---|---|---|
committer | Pawel Pekala <pawel@FreeBSD.org> | 2017-07-27 15:07:48 +0000 |
commit | 9e9f7d985eef9b10c6fab0559943d6b8bdd1c800 (patch) | |
tree | d87ace6709ea3cbc04463896729e253f2d55470a /lang/f2c/files | |
parent | sysutils/restic: respect PREFIX in creation of bash completion script. (diff) |
- Add SONAME library description
- Convert to options helpers
- Use INSTALL_LIB to get stripped library
PR: 221036
Submitted by: myself
Approved by: maho (maintainer)
Notes
Notes:
svn path=/head/; revision=446744
Diffstat (limited to 'lang/f2c/files')
-rw-r--r-- | lang/f2c/files/patch-libf2c_Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lang/f2c/files/patch-libf2c_Makefile b/lang/f2c/files/patch-libf2c_Makefile index 685e6442fde3..183662b98659 100644 --- a/lang/f2c/files/patch-libf2c_Makefile +++ b/lang/f2c/files/patch-libf2c_Makefile @@ -26,7 +26,7 @@ libf2c.so: $(OFILES) - cc -shared -o libf2c.so $(OFILES) -+ $(CC) -shared -o libf2c.so $(OFILES) ++ $(CC) -shared -Wl,-soname,libf2c.so.%%LIBVER%% -o libf2c.so $(OFILES) ### If your system lacks ranlib, you don't need it; see README. |