1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35
|
From: Ole Streicher <olebole@debian.org>
Date: Sat, 1 Jul 2017 20:53:20 +0200
Subject: Fix format security errors
---
flames/tests/Makefile.am | 2 +-
uves/tests/Makefile.am | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/flames/tests/Makefile.am b/flames/tests/Makefile.am
index 5aa6144..cee4cb8 100644
--- a/flames/tests/Makefile.am
+++ b/flames/tests/Makefile.am
@@ -31,7 +31,7 @@ endif
AM_CPPFLAGS = $(all_includes)
LDADD = $(LIBFLAMES) $(LIBUVES) $(LIBCPLCORE) $(LIBCPLUI) $(LIBCPLDRS)
-LDFLAGS = $(CPL_LDFLAGS)
+AM_LDFLAGS = $(CPL_LDFLAGS)
#AM_LDFLAGS = -static
pkginclude_HEADERS =
diff --git a/uves/tests/Makefile.am b/uves/tests/Makefile.am
index 228f094..0e03fff 100644
--- a/uves/tests/Makefile.am
+++ b/uves/tests/Makefile.am
@@ -31,7 +31,7 @@ endif
AM_CPPFLAGS = $(all_includes)
LDADD = $(LIBUVES) $(LIBFLAMES) $(LIBCPLUI) $(LIBCPLCORE) $(LIBCEXT) $(LIBCFITSIO) -lqfits
-LDFLAGS = $(CPL_LDFLAGS)
+AM_LDFLAGS = $(CPL_LDFLAGS)
pkginclude_HEADERS =
|