On Monday 2009-01-12 06:46, Patrick McHardy wrote: > parent de2a83cb5022c429ccf1b852688481a0d8ad95e5 (v1.4.3-rc1-17-gde2a83c) commit f38ae2530b523f2b293e19021fab8ddae9f8435b Author: Jan Engelhardt <jengelh@xxxxxxxxxx> Date: Mon Jan 12 07:09:53 2009 +0100 build: use regular = assignments in Makefile Resolves warnings: Makefile.am:7: `:='-style assignments are not portable Makefile.am:71: `:='-style assignments are not portable etc. Signed-off-by: Jan Engelhardt <jengelh@xxxxxxxxxx> --- Makefile.am | 20 ++++++++++---------- 1 files changed, 10 insertions(+), 10 deletions(-) diff --git a/Makefile.am b/Makefile.am index fd4d93f..d5f8875 100644 --- a/Makefile.am +++ b/Makefile.am @@ -4,7 +4,7 @@ ACLOCAL_AMFLAGS = -I m4 AUTOMAKE_OPTIONS = foreign subdir-objects AM_CFLAGS = ${regular_CFLAGS} -I${top_builddir}/include -I${top_srcdir}/include ${kinclude_CFLAGS} -SUBDIRS := extensions +SUBDIRS = extensions if ENABLE_LIBIPQ SUBDIRS += libipq endif @@ -68,16 +68,16 @@ ip6tables_static_SOURCES = ${ip6tables_multi_SOURCES} xtables.c ip6tables_static_CFLAGS = ${ip6tables_multi_CFLAGS} -DNO_SHARED_LIBS=1 ip6tables_static_LDADD = -lm libiptc/libiptc.a extensions/libext6.a -noinst_LIBRARIES := libiptc/libiptc.a -bin_PROGRAMS := iptables-xml -sbin_PROGRAMS := -noinst_PROGRAMS := -man_MANS := iptables.8 iptables-restore.8 iptables-save.8 \ - iptables-xml.8 ip6tables.8 ip6tables-restore.8 \ - ip6tables-save.8 -CLEANFILES := iptables.8 ip6tables.8 +noinst_LIBRARIES = libiptc/libiptc.a +bin_PROGRAMS = iptables-xml +sbin_PROGRAMS = +noinst_PROGRAMS = +man_MANS = iptables.8 iptables-restore.8 iptables-save.8 \ + iptables-xml.8 ip6tables.8 ip6tables-restore.8 \ + ip6tables-save.8 +CLEANFILES = iptables.8 ip6tables.8 if ENABLE_DEVEL -include_HEADERS := include/xtables.h +include_HEADERS = include/xtables.h endif if ENABLE_STATIC -- # Created with git-export-patch -- To unsubscribe from this list: send the line "unsubscribe netfilter-devel" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html