aboutsummaryrefslogtreecommitdiffstats
path: root/src/so.mk
diff options
context:
space:
mode:
authorLibravatar Kelvin M. Klann <kmk3.code@protonmail.com>2023-06-23 08:59:43 -0300
committerLibravatar Kelvin M. Klann <kmk3.code@protonmail.com>2023-06-25 10:04:47 -0300
commit9c08da15bd18d5a131fef5d6937ad9103f20340d (patch)
tree1ef0524bc55129ff96a4a94b997c1902a41a106a /src/so.mk
parentbuild: remove redundant LDFLAGS in so.mk (diff)
downloadfirejail-9c08da15bd18d5a131fef5d6937ad9103f20340d.tar.gz
firejail-9c08da15bd18d5a131fef5d6937ad9103f20340d.tar.zst
firejail-9c08da15bd18d5a131fef5d6937ad9103f20340d.zip
build: move common CFLAGS/LDFLAGS first
Diffstat (limited to 'src/so.mk')
-rw-r--r--src/so.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/so.mk b/src/so.mk
index 7a8d09e89..ec0947933 100644
--- a/src/so.mk
+++ b/src/so.mk
@@ -16,7 +16,7 @@ SO_CFLAGS = \
16 -fstack-protector-all -D_FORTIFY_SOURCE=2 \ 16 -fstack-protector-all -D_FORTIFY_SOURCE=2 \
17 -fPIC 17 -fPIC
18 18
19SO_LDFLAGS = -fPIC -Wl,-z,relro -Wl,-z,now 19SO_LDFLAGS = -Wl,-z,relro -Wl,-z,now -fPIC
20 20
21.PHONY: all 21.PHONY: all
22all: $(TARGET) 22all: $(TARGET)