diff options
author | Ludovic Courtès <ludo@gnu.org> | 2019-07-07 15:07:44 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2019-07-07 15:07:44 +0200 |
commit | a69b567d97f7c9193924c775e1dd86e43a35b8bd (patch) | |
tree | befb76df4683eb9f6409fd328fc561c89eea654c | |
parent | 85de8637cda22b3435d6c802ddaaf9f8abd911bf (diff) |
build: Do not record LDFLAGS in .pc file.
Fixes <https://bugs.gnu.org/36339>.
Reported by Cyprien Nicolas <cyprien@nicolas.tf>.
* configure.ac (GUILE_LIBS): Remove $LDFLAGS.
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 9073deba0..92966ce34 100644 --- a/configure.ac +++ b/configure.ac @@ -1688,7 +1688,7 @@ do done GUILE_CFLAGS="$GUILE_CFLAGS $PTHREAD_CFLAGS" -GUILE_LIBS="$LDFLAGS $LIBS" +GUILE_LIBS="$LIBS" AC_SUBST(GUILE_LIBS) AC_SUBST(GUILE_CFLAGS) |