diff options
author | Steve Price <steve@FreeBSD.org> | 1998-10-26 13:54:24 +0000 |
---|---|---|
committer | Steve Price <steve@FreeBSD.org> | 1998-10-26 13:54:24 +0000 |
commit | ddb7b886d3e7176dee7581243661e76667b94a36 (patch) | |
tree | fd9818782683e8a05ece1b3dd9d739dcd433192f /mail/imap-uw/files | |
parent | Upgrade to latest version, remove BROKEN tag. (diff) |
Fix a braino I introduced that made this fail in -stable.
Notes
Notes:
svn path=/head/; revision=14200
Diffstat (limited to 'mail/imap-uw/files')
-rw-r--r-- | mail/imap-uw/files/patch-ab | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mail/imap-uw/files/patch-ab b/mail/imap-uw/files/patch-ab index afab8c317626..59d55db387b5 100644 --- a/mail/imap-uw/files/patch-ab +++ b/mail/imap-uw/files/patch-ab @@ -51,9 +51,9 @@ +$(SHLIB): $(SOFILES) +.if $(PORTOBJFORMAT) == "elf" -+ ld -Bshareable -x -o $(SHLIB) $(SOFILES) ++ ld -shared -x -soname $(SHLIB) -o $(SHLIB) $(SOFILES) +.else -+ ld -Bshareable -x -soname $(SHLIB) -o $(SHLIB) $(SOFILES) ++ ld -Bshareable -x -o $(SHLIB) $(SOFILES) +.endif + +.c.so: osdep.h |