From: Jim Meyering Date: Sun, 19 Dec 1999 10:25:06 +0000 (+0000) Subject: . X-Git-Tag: FILEUTILS-4_0l~5 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=0d9e008da2065dac4574ccdfad35af4cc6e3d1b2;p=thirdparty%2Fcoreutils.git . --- diff --git a/lib/Makefile.in b/lib/Makefile.in index 808cb07bfb..b4fc848cbd 100644 --- a/lib/Makefile.in +++ b/lib/Makefile.in @@ -656,11 +656,21 @@ distclean-generic clean-generic maintainer-clean-generic clean \ mostlyclean distclean maintainer-clean lstat.c: xstat.in - sed -e '/@IGNORE@/d' -e 's/@xstat@/lstat/g' $(srcdir)/xstat.in > $@-t + sed \ + -e '/@IGNORE@/d' \ + -e 's/@xstat@/lstat/g' \ + -e '/_LSTAT_ONLY@/d' \ + -e '/@BEGIN_STAT_ONLY@/,/@END_STAT_ONLY@/d' \ + $(srcdir)/xstat.in > $@-t mv $@-t $@ stat.c: xstat.in - sed -e '/@IGNORE@/d' -e 's/@xstat@/stat/g' $(srcdir)/xstat.in > $@-t + sed \ + -e '/@IGNORE@/d' \ + -e 's/@xstat@/stat/g' \ + -e '/_STAT_ONLY@/d' \ + -e '/@BEGIN_LSTAT_ONLY@/,/@END_LSTAT_ONLY@/d' \ + $(srcdir)/xstat.in > $@-t mv $@-t $@ # Tell versions [3.59,3.63) of GNU make to not export all variables. diff --git a/tests/ls/Makefile.in b/tests/ls/Makefile.in index 8738c24b50..6a7bf2e416 100644 --- a/tests/ls/Makefile.in +++ b/tests/ls/Makefile.in @@ -103,7 +103,7 @@ l = @l@ AUTOMAKE_OPTIONS = 1.2 gnits -TESTS = rt-1 time-1 slashed-symlink +TESTS = rt-1 time-1 symlink-slash EXTRA_DIST = $(TESTS) TESTS_ENVIRONMENT = \ top_srcdir=$(top_srcdir) \