dev-R/ps: respect LDFLAGS

Closes: https://bugs.gentoo.org/794112
Signed-off-by: Alessandro Barbieri <lssndrbarbieri@gmail.com>
This commit is contained in:
Alessandro Barbieri
2021-09-05 05:56:14 +02:00
parent 1dc1bcfb73
commit 81a93e00b6
3 changed files with 27 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
--- a/src/Makevars.in
+++ b/src/Makevars.in
@@ -8,10 +8,10 @@
all: px @TARGETS@ $(SHLIB)
px: px.c
- $(CC) $(CFLAGS) -Wall px.c -o px
+ $(CC) $(CFLAGS) $(LDFLAGS) -fPIE -Wall px.c -o px
interrupt: interrupt.c
- $(CC) $(CFLAGS) -Wall interrupt.c -o interrupt
+ $(CC) $(CFLAGS) $(LDFLAGS) -fPIE -Wall interrupt.c -o interrupt
clean:
rm -rf $(SHLIB) $(OBJECTS) px.exe px interrupt.exe interrupt