diff options
author | crees <crees@FreeBSD.org> | 2011-07-06 05:14:20 +0800 |
---|---|---|
committer | crees <crees@FreeBSD.org> | 2011-07-06 05:14:20 +0800 |
commit | be6736bf148a3bf9fdb648c4e633572a7dfeaac4 (patch) | |
tree | c48c2e4c14750cc08140a4f56d8c36502111e8a5 /mail | |
parent | 09ce7ee422338233112db70b7915aa516c4bddac (diff) | |
download | freebsd-ports-gnome-be6736bf148a3bf9fdb648c4e633572a7dfeaac4.tar.gz freebsd-ports-gnome-be6736bf148a3bf9fdb648c4e633572a7dfeaac4.tar.zst freebsd-ports-gnome-be6736bf148a3bf9fdb648c4e633572a7dfeaac4.zip |
Fix for gmake-3.82 issues suffered by a small minority of users
PR: ports/156912
Submitted by: crees (me)
Approved by: rene (mentor), maintainer (gecko; flo@ over IRC)
Diffstat (limited to 'mail')
-rw-r--r-- | mail/thunderbird3/files/patch-mailnews-extensions-smime-build-Makefile.in | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/mail/thunderbird3/files/patch-mailnews-extensions-smime-build-Makefile.in b/mail/thunderbird3/files/patch-mailnews-extensions-smime-build-Makefile.in new file mode 100644 index 000000000000..ea86be4a2eef --- /dev/null +++ b/mail/thunderbird3/files/patch-mailnews-extensions-smime-build-Makefile.in @@ -0,0 +1,16 @@ +$FreeBSD$ + +This is from ports/156912; it fixes the build failure due to the gmake-3.81-ism +in mailnews/extensions/smime/build/Makefile.in + +--- mailnews/extensions/smime/build/Makefile.in.orig 2011-05-09 18:49:18.458634807 +0100 ++++ mailnews/extensions/smime/build/Makefile.in 2011-05-09 18:50:07.015309434 +0100 +@@ -81,7 +81,7 @@ + $(NULL) + + ifndef MOZ_STATIC_MAIL_BUILD +-SHARED_LIBRARY_LIBS + = ../../../base/util/$(LIB_PREFIX)msgbsutl_s.$(LIB_SUFFIX) ++SHARED_LIBRARY_LIBS += ../../../base/util/$(LIB_PREFIX)msgbsutl_s.$(LIB_SUFFIX) + endif + + ifdef MOZILLA_INTERNAL_API |