diff options
author | Ludovic Courtès <ludo@gnu.org> | 2009-09-24 00:04:37 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2009-09-24 00:06:54 +0200 |
commit | 76e8a7588c7cdbdfe96be81366fe9ef43960423f (patch) | |
tree | 17a9ffb0f90105db46b34bea187c7f072182de81 /srfi | |
parent | 297273e422ac2b382f6e289b9df5cf9c28b39fa6 (diff) | |
download | guile-76e8a7588c7cdbdfe96be81366fe9ef43960423f.tar.gz |
Move "-z relro" out of $LDFLAGS so it's not in `guile-2.0.pc'.
* acinclude.m4 (GUILE_GNU_LD_RELRO): Substitute `GNU_LD_FLAGS'.
* libguile/Makefile.am (libguile_la_LDFLAGS): Add $(GNU_LD_FLAGS).
* srfi/Makefile.am (AM_LDFLAGS): New.
Diffstat (limited to 'srfi')
-rw-r--r-- | srfi/Makefile.am | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/srfi/Makefile.am b/srfi/Makefile.am index 648603007..459d60633 100644 --- a/srfi/Makefile.am +++ b/srfi/Makefile.am @@ -1,6 +1,6 @@ ## Process this file with Automake to create Makefile.in ## -## Copyright (C) 2001, 2002, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc. +## Copyright (C) 2001, 2002, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc. ## ## This file is part of GUILE. ## @@ -30,6 +30,7 @@ AM_CPPFLAGS = -I.. -I$(srcdir)/.. \ -I$(top_srcdir)/lib -I$(top_builddir)/lib AM_CFLAGS = $(GCC_CFLAGS) +AM_LDFLAGS = $(GNU_LD_FLAGS) srfiincludedir = $(pkgincludedir)/srfi |