1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
|
Description: Use LDFLAGS when linking the main praat executable
This fixes the Lintian warning hardening-no-relro.
Author: Rafael Laboissiere <rafael@debian.org>
Forwarded: not-needed
Last-Update: 2021-03-07
--- praat-5.3.15.orig/Makefile
+++ praat-5.3.15/Makefile
@@ -27,7 +27,7 @@ all:
external/gsl/libgsl.a \
external/vorbis/libvorbis.a \
external/opusfile/libopusfile.a \
- $(LIBS)
+ $(LIBS) $(LDFLAGS)
all-external:
$(MAKE) -C external/clapack
|