.
authorJim Meyering <jim@meyering.net>
Sun, 19 Dec 1999 10:25:06 +0000 (10:25 +0000)
committerJim Meyering <jim@meyering.net>
Sun, 19 Dec 1999 10:25:06 +0000 (10:25 +0000)
lib/Makefile.in
tests/ls/Makefile.in

index 808cb07..b4fc848 100644 (file)
@@ -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.
index 8738c24..6a7bf2e 100644 (file)
@@ -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) \