Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 19 Sep 2015 22:04:27 +0000 (UTC)
From:      Christian Weisgerber <naddy@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r397339 - head/archivers/gcpio/files
Message-ID:  <201509192204.t8JM4RWZ023091@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201509192204.t8JM4RWZ023091>