From f6ffc8adf39fccc93a015e7047e42bbb5fd9f237 Mon Sep 17 00:00:00 2001 From: "Todd C. Miller" Date: Wed, 6 Apr 2011 10:06:51 -0400 Subject: [PATCH] Make SUDOERS_LDFLAGS reference $(LDFLAGS) instead of using @LDFLAGS@ directly. --- plugins/sudoers/Makefile.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/sudoers/Makefile.in b/plugins/sudoers/Makefile.in index ecc5076cc..d86192d8b 100644 --- a/plugins/sudoers/Makefile.in +++ b/plugins/sudoers/Makefile.in @@ -56,7 +56,7 @@ CFLAGS = @CFLAGS@ # Flags to pass to the link stage LDFLAGS = @LDFLAGS@ -SUDOERS_LDFLAGS = @LDFLAGS@ @SUDOERS_LDFLAGS@ +SUDOERS_LDFLAGS = $(LDFLAGS) @SUDOERS_LDFLAGS@ LTLDFLAGS = @LTLDFLAGS@ # Where to install things... -- 2.40.0