diff options
author | Jim Meyering <meyering@redhat.com> | 2009-04-29 12:25:20 +0200 |
---|---|---|
committer | Jim Meyering <meyering@redhat.com> | 2009-04-29 12:25:20 +0200 |
commit | 2aaeffde6e981833550a3111b9a0740365462ec3 (patch) | |
tree | adab589385f6c20f9d5ef606b52809f73fc79fb3 | |
parent | e802490f47bcbf4a32354e8144b1f03c4e3e458c (diff) | |
download | idutils-2aaeffde6e981833550a3111b9a0740365462ec3.tar.gz idutils-2aaeffde6e981833550a3111b9a0740365462ec3.tar.bz2 idutils-2aaeffde6e981833550a3111b9a0740365462ec3.zip |
build: address automake warning
* lib/Makefile.am (AM_CFLAGS): Increment, rather than assigning,
so as not to override settings from just-included gnulib.mk.
-rw-r--r-- | lib/Makefile.am | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Makefile.am b/lib/Makefile.am index 2aadabf..de226ae 100644 --- a/lib/Makefile.am +++ b/lib/Makefile.am @@ -1,5 +1,5 @@ ## Process this file with automake to produce Makefile.in. -# Copyright (C) 2004-2007 Free Software Foundation, Inc. +# Copyright (C) 2004-2007, 2009 Free Software Foundation, Inc. # # This file is free software, distributed under the terms of the GNU # General Public License. As a special exception to the GNU General @@ -9,7 +9,7 @@ include gnulib.mk -AM_CFLAGS = $(WARNING_CFLAGS) $(WERROR_CFLAGS) +AM_CFLAGS += $(WARNING_CFLAGS) $(WERROR_CFLAGS) libgnu_a_LIBADD += $(LIBOBJS) libgnu_a_DEPENDENCIES += $(LIBOBJS) |