summarylogtreecommitdiffstats
path: root/archlinux-makefile.patch
diff options
context:
space:
mode:
authorUko Koknevics2018-12-09 15:03:39 +0200
committerUko Koknevics2018-12-09 15:03:39 +0200
commit1ec334ef0259cf333ff80a60eab8e7a2a57b50cb (patch)
tree0e10c9562f2623d8138beec4b8ccfc89be90860f /archlinux-makefile.patch
downloadaur-1ec334ef0259cf333ff80a60eab8e7a2a57b50cb.tar.gz
Added original-awk to AUR
Diffstat (limited to 'archlinux-makefile.patch')
-rw-r--r--archlinux-makefile.patch25
1 files changed, 25 insertions, 0 deletions
diff --git a/archlinux-makefile.patch b/archlinux-makefile.patch
new file mode 100644
index 000000000000..95a3bac8221f
--- /dev/null
+++ b/archlinux-makefile.patch
@@ -0,0 +1,25 @@
+--- a/makefile 2018-12-09 14:56:14.827262650 +0200
++++ b/makefile 2018-12-09 14:57:18.787297831 +0200
+@@ -32,10 +32,12 @@
+ CC = gcc -O4 -Wall -pedantic -fno-strict-aliasing
+
+ YACC = bison -d -y
+-YACC = yacc -d -S
++YACC = yacc -d
+ #YFLAGS = -d -S
+ # -S uses sprintf in yacc parser instead of sprint
+
++LDFLAGS = -Wl,-z,relro,-z,now
++
+ OFILES = b.o main.o parse.o proctab.o tran.o lib.o run.o lex.o
+
+ SOURCE = awk.h ytab.c ytab.h proto.h awkgram.y lex.c b.c main.c \
+@@ -48,7 +50,7 @@
+ awk.1
+
+ a.out: ytab.o $(OFILES)
+- $(CC) ytab.o $(OFILES) $(ALLOC) -lm
++ $(CC) $(LDFLAGS) ytab.o $(OFILES) $(ALLOC) -lm
+
+ $(OFILES): awk.h ytab.h proto.h
+