svn commit: r439132 - in head/emulators/qemu-utils: . files

Jan Beich jbeich at FreeBSD.org
Sat Apr 22 08:50:01 UTC 2017


Ian Lepore <ian at freebsd.org> writes:

> On Fri, 2017-04-21 at 23:47 +0000, Alan Somers wrote:
>
>> Author: asomers (src committer)
>> Date: Fri Apr 21 23:47:27 2017
>> New Revision: 439132
>> URL: https://svnweb.freebsd.org/changeset/ports/439132
>> 
>> Log:
>>   Add missing file from r438925
>>   
>>   Apparently when you run "make makepatch" in a slave port, the patchfiles get
>>   put into the master port's directory
>
> If only there were a way that a slave port could have a whole directory
> full of extra patches and easily specify them to be applied along with
> the master's patches.
>
> https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=193435

Interesting. Some ports worked around it via shell globbing e.g.,

  $ git grep 'EXTRA_PATCHES.*CURDIR.*\*'
  chinese/enscript/Makefile:EXTRA_PATCHES=	${.CURDIR}/files/patch-*
  devel/android-tools-adb-devel/Makefile:EXTRA_PATCHES=	${.CURDIR}/files/patch-*
  devel/android-tools-fastboot-devel/Makefile:EXTRA_PATCHES=	${.CURDIR}/files/patch-*
  japanese/plan/Makefile:EXTRA_PATCHES=	${.CURDIR}/files/patch-*

Index: emulators/qemu-utils/Makefile
===================================================================
--- emulators/qemu-utils/Makefile	(revision 439138)
+++ emulators/qemu-utils/Makefile	(working copy)
@@ -19,7 +19,7 @@ OPTIONS_EXCLUDE=	SAMBA X11 GTK2 OPENGL GNUTLS SASL
 MASTERDIR=	${.CURDIR}/../qemu
 PLIST=		${.CURDIR}/pkg-plist
 DESCR=		${.CURDIR}/pkg-descr
-EXTRA_PATCHES=	${.CURDIR}/files/patch-Makefile ${.CURDIR}/files/patch-configure
+EXTRA_PATCHES=	${.CURDIR}/files/patch-*
 PKGMESSAGE=
 
 PORTDOCS=	qemu-doc.html qmp-commands.txt


More information about the svn-ports-head mailing list