Skip to content

Commit 0b86ffe

Browse files
committed
build: fix insecure RUNPATH
In Gentoo -static-libtool-libs causes a QA Notice. * QA Notice: The following files contain insecure RUNPATHs * Please file a bug about this at https://bugs.gentoo.org/ * with the maintainer of the package. * /var/tmp/portage/app-misc/jq-1.7.1/image/usr/bin/jqn RPATH: /var/tmp/portage/app-misc/jq-1.7.1/work/jq-jq-1.7.1/.libs Gentoo-Issue: https://bugs.gentoo.org/945698 Signed-off-by: orbea <[email protected]>
1 parent dea5e61 commit 0b86ffe

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

Makefile.am

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -115,11 +115,10 @@ CLEANFILES = src/builtin.inc
115115

116116
bin_PROGRAMS = jq
117117
jq_SOURCES = src/main.c
118-
jq_LDFLAGS = -static-libtool-libs
119118
jq_LDADD = libjq.la -lm
120119

121120
if ENABLE_ALL_STATIC
122-
jq_LDFLAGS += -all-static
121+
jq_LDFLAGS = -all-static
123122
endif
124123

125124
### Tests (make check)

0 commit comments

Comments
 (0)