summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Sturmlechner <asturm@gentoo.org>2022-12-22 20:41:28 +0100
committerAndreas Sturmlechner <asturm@gentoo.org>2022-12-24 15:00:32 +0100
commitd43c93c01f84d78d92eeb2b205a968280c353511 (patch)
treed61e7a09adf49dfe979102d190006338059c3b1b /sys-apps/nawk/files
parentsys-apps/xinetd: drop 2.3.15.4 (diff)
downloadgentoo-d43c93c01f84d78d92eeb2b205a968280c353511.tar.gz
gentoo-d43c93c01f84d78d92eeb2b205a968280c353511.tar.bz2
gentoo-d43c93c01f84d78d92eeb2b205a968280c353511.zip
sys-apps/nawk: drop 20180827-r1
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'sys-apps/nawk/files')
-rw-r--r--sys-apps/nawk/files/nawk-20180827-parallel-build.patch35
1 files changed, 0 insertions, 35 deletions
diff --git a/sys-apps/nawk/files/nawk-20180827-parallel-build.patch b/sys-apps/nawk/files/nawk-20180827-parallel-build.patch
deleted file mode 100644
index c6e3838313a0..000000000000
--- a/sys-apps/nawk/files/nawk-20180827-parallel-build.patch
+++ /dev/null
@@ -1,35 +0,0 @@
-From fa4a9fd729a57a314f0aa10897216ce3b60ec653 Mon Sep 17 00:00:00 2001
-From: Christoph Junghans <ottxor@gentoo.org>
-Date: Mon, 10 Feb 2014 22:38:22 -0700
-Subject: [PATCH] fixed parallel build
-
----
- makefile | 11 ++++++++---
- 1 file changed, 8 insertions(+), 3 deletions(-)
-
-diff --git a/makefile b/makefile
-index ae80e4d..b3c8f9d 100644
---- a/makefile
-+++ b/makefile
-@@ -54,10 +54,15 @@ a.out: ytab.o $(OFILES)
-
- $(OFILES): awk.h ytab.h proto.h
-
--ytab.c: awk.h proto.h awkgram.y
-+#Clear dependency for parallel build: (make -j)
-+#YACC generated y.tab.c and y.tab.h at the same time
-+#this needs to be a static pattern rules otherwise multiple target
-+#are mapped onto multiple executions of yacc, which overwrite
-+#each others outputs.
-+y%.c y%.h: awk.h proto.h awkgram.y
- $(YACC) $(YFLAGS) awkgram.y
-- mv y.tab.c ytab.c
-- mv y.tab.h ytab.h
-+ mv y.$*.c y$*.c
-+ mv y.$*.h y$*.h
-
- ytab.h: ytab.c
-
---
-2.19.2
-