diff options
author | naddy <naddy@FreeBSD.org> | 2015-09-20 06:04:27 +0800 |
---|---|---|
committer | naddy <naddy@FreeBSD.org> | 2015-09-20 06:04:27 +0800 |
commit | a35d7799bff7cdb8bcb2980bf20cc0137503e413 (patch) | |
tree | 653f2b026512cb165e49a8585ea7d0325bd59b56 /archivers/gcpio | |
parent | f75912939aa2bddf39cae6a8fbf40ed4e84669f6 (diff) | |
download | freebsd-ports-gnome-a35d7799bff7cdb8bcb2980bf20cc0137503e413.tar.gz freebsd-ports-gnome-a35d7799bff7cdb8bcb2980bf20cc0137503e413.tar.zst freebsd-ports-gnome-a35d7799bff7cdb8bcb2980bf20cc0137503e413.zip |
Build fix for FreeBSD 9. Define variable, since the old make throws
Error expanding embedded variable.
for this valid construct:
FOO =
BAR = $(FOO$(BAZ))
all: $(BAR)
The bug is fixed in bmake.
Reported by: pkg-fallout
Diffstat (limited to 'archivers/gcpio')
-rw-r--r-- | archivers/gcpio/files/patch-po_Makefile.in.in | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/archivers/gcpio/files/patch-po_Makefile.in.in b/archivers/gcpio/files/patch-po_Makefile.in.in new file mode 100644 index 000000000000..c1cefcaa4416 --- /dev/null +++ b/archivers/gcpio/files/patch-po_Makefile.in.in @@ -0,0 +1,10 @@ +--- po/Makefile.in.in.orig 2015-09-12 10:51:46 UTC ++++ po/Makefile.in.in +@@ -80,6 +80,7 @@ CATALOGS = @CATALOGS@ + POFILESDEPS_ = $(srcdir)/$(DOMAIN).pot + POFILESDEPS_yes = $(POFILESDEPS_) + POFILESDEPS_no = ++PO_DEPENDS_ON_POT = + POFILESDEPS = $(POFILESDEPS_$(PO_DEPENDS_ON_POT)) + + DISTFILESDEPS_ = update-po |