diff options
author | Mathieu Arnold <mat@FreeBSD.org> | 2018-09-10 13:11:23 +0000 |
---|---|---|
committer | Mathieu Arnold <mat@FreeBSD.org> | 2018-09-10 13:11:23 +0000 |
commit | f57bc4af665126de839ff734a08e57726e84da84 (patch) | |
tree | b47b12c2614f4db455f6a6733adce11a1cbba4b5 /emulators/mame | |
parent | Some modules depend on other being there before. (diff) |
After an include, PLIST_SUB must be appended to, not overwritten.
If it is overwritten, many values will be clobbered, and
pain will ensue.
PR: 230864
Submitted by: mat
exp-runs by: antoine
Notes
Notes:
svn path=/head/; revision=479405
Diffstat (limited to 'emulators/mame')
-rw-r--r-- | emulators/mame/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/emulators/mame/Makefile b/emulators/mame/Makefile index 84a97a673120..1bcf8c1d021d 100644 --- a/emulators/mame/Makefile +++ b/emulators/mame/Makefile @@ -62,7 +62,7 @@ EMULATOR= ${MSUBTARGET}64 .else EMULATOR= ${MSUBTARGET} .endif -PLIST_SUB= EMULATOR=${EMULATOR} +PLIST_SUB+= EMULATOR=${EMULATOR} post-patch: @${RM} ${WRKSRC}/3rdparty/bx/include/compat/freebsd/dirent.h |