diff options
author | Tijl Coosemans <tijl@FreeBSD.org> | 2024-03-04 12:45:18 +0100 |
---|---|---|
committer | Tijl Coosemans <tijl@FreeBSD.org> | 2024-03-04 14:31:45 +0100 |
commit | 9f49d105b760c6191e57fa844ef1b85e468793bb (patch) | |
tree | ff3e3229069d22cf98e7df13f427ff450d4b06de | |
parent | 45fa35a7ba502744270e309d4c4065aedca2b93c (diff) | |
download | freebsd-ports-9f49d105b760c6191e57fa844ef1b85e468793bb.zip |
audio/flite: Fix parallel build with gmake 4.4
Remove prerequisites from .NOTPARALLEL to restore the behaviour from
previous versions of gmake.
PR: 272216
Reported by: antoine
-rw-r--r-- | audio/flite/files/patch-main_Makefile | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/audio/flite/files/patch-main_Makefile b/audio/flite/files/patch-main_Makefile index a676495274d9..09affe85e60e 100644 --- a/audio/flite/files/patch-main_Makefile +++ b/audio/flite/files/patch-main_Makefile @@ -9,6 +9,15 @@ VOICES=$(VOXES) VOICELIBS=$(VOICES:%=flite_%) +@@ -85,7 +85,7 @@ endif + shared_libs: nothing + endif + +-.NOTPARALLEL: $(ALL) ++.NOTPARALLEL: + + flite_lang_list: + rm -f flite_lang_list.c @@ -133,15 +133,15 @@ install: install: |