diff options
author | Jim Meyering <jim@meyering.net> | 1999-12-19 10:25:06 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 1999-12-19 10:25:06 +0000 |
commit | 0d9e008da2065dac4574ccdfad35af4cc6e3d1b2 (patch) | |
tree | cc4737199dc5794b56ff720fdcb0bf9e2b05b718 /lib | |
parent | 7902c4708906b7700192b98959b60f16c237f03a (diff) | |
download | coreutils-0d9e008da2065dac4574ccdfad35af4cc6e3d1b2.tar.xz |
.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/Makefile.in | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/lib/Makefile.in b/lib/Makefile.in index 808cb07bf..b4fc848cb 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. |