Module Name: othersrc
Committed By: lukem
Date: Thu Mar 21 03:24:04 UTC 2013
Modified Files:
othersrc/libexec/tnftpd/libnetbsd: Makefile.am
othersrc/libexec/tnftpd/ls: Makefile.am
othersrc/libexec/tnftpd/src: Makefile.am
Log Message:
Consistently use AM_CPPFLAGS
To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 othersrc/libexec/tnftpd/libnetbsd/Makefile.am
cvs rdiff -u -r1.3 -r1.4 othersrc/libexec/tnftpd/ls/Makefile.am
cvs rdiff -u -r1.3 -r1.4 othersrc/libexec/tnftpd/src/Makefile.am
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: othersrc/libexec/tnftpd/libnetbsd/Makefile.am
diff -u othersrc/libexec/tnftpd/libnetbsd/Makefile.am:1.2 othersrc/libexec/tnftpd/libnetbsd/Makefile.am:1.3
--- othersrc/libexec/tnftpd/libnetbsd/Makefile.am:1.2 Mon Jan 4 05:46:29 2010
+++ othersrc/libexec/tnftpd/libnetbsd/Makefile.am Thu Mar 21 03:24:04 2013
@@ -1,10 +1,11 @@
-## $NetBSD: Makefile.am,v 1.2 2010/01/04 05:46:29 lukem Exp $
+## $NetBSD: Makefile.am,v 1.3 2013/03/21 03:24:04 lukem Exp $
noinst_LTLIBRARIES = libnetbsd.la
libnetbsd_la_SOURCES =
-CPPFLAGS = \
+AM_CPPFLAGS = \
+ -DHAVE_TNFTPD_H=1 \
-I$(srcdir) \
-I$(top_srcdir) \
-I$(top_builddir)
Index: othersrc/libexec/tnftpd/ls/Makefile.am
diff -u othersrc/libexec/tnftpd/ls/Makefile.am:1.3 othersrc/libexec/tnftpd/ls/Makefile.am:1.4
--- othersrc/libexec/tnftpd/ls/Makefile.am:1.3 Mon Jan 4 05:46:29 2010
+++ othersrc/libexec/tnftpd/ls/Makefile.am Thu Mar 21 03:24:04 2013
@@ -1,4 +1,4 @@
-## $NetBSD: Makefile.am,v 1.3 2010/01/04 05:46:29 lukem Exp $
+## $NetBSD: Makefile.am,v 1.4 2013/03/21 03:24:04 lukem Exp $
noinst_LTLIBRARIES = libls.la
@@ -12,7 +12,7 @@ libls_la_SOURCES += \
util.c
endif
-libls_la_CPPFLAGS = \
+AM_CPPFLAGS = \
-DHAVE_TNFTPD_H=1 \
-I$(srcdir) \
-I$(top_srcdir)/libnetbsd \
Index: othersrc/libexec/tnftpd/src/Makefile.am
diff -u othersrc/libexec/tnftpd/src/Makefile.am:1.3 othersrc/libexec/tnftpd/src/Makefile.am:1.4
--- othersrc/libexec/tnftpd/src/Makefile.am:1.3 Mon Jan 4 05:46:29 2010
+++ othersrc/libexec/tnftpd/src/Makefile.am Thu Mar 21 03:24:04 2013
@@ -1,4 +1,4 @@
-## $NetBSD: Makefile.am,v 1.3 2010/01/04 05:46:29 lukem Exp $
+## $NetBSD: Makefile.am,v 1.4 2013/03/21 03:24:04 lukem Exp $
libexec_PROGRAMS = tnftpd
@@ -9,7 +9,7 @@ tnftpd_SOURCES = \
ftpcmd.y \
popen.c
-tnftpd_CPPFLAGS = \
+AM_CPPFLAGS = \
-DHAVE_TNFTPD_H=1 \
-D_DEFAULT_CONFDIR=\"${sysconfdir}\" \
-I$(srcdir) \