svn commit: r397339 - head/archivers/gcpio/files

Christian Weisgerber naddy at FreeBSD.org
Sat Sep 19 22:04:28 UTC 2015


Author: naddy
Date: Sat Sep 19 22:04:27 2015
New Revision: 397339
URL: https://svnweb.freebsd.org/changeset/ports/397339

Log:
  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

Added:
  head/archivers/gcpio/files/patch-po_Makefile.in.in   (contents, props changed)

Added: head/archivers/gcpio/files/patch-po_Makefile.in.in
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/archivers/gcpio/files/patch-po_Makefile.in.in	Sat Sep 19 22:04:27 2015	(r397339)
@@ -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


More information about the svn-ports-head mailing list