summaryrefslogtreecommitdiff
path: root/lib/Makefile.in
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>1999-12-19 10:25:06 +0000
committerJim Meyering <jim@meyering.net>1999-12-19 10:25:06 +0000
commit0d9e008da2065dac4574ccdfad35af4cc6e3d1b2 (patch)
treecc4737199dc5794b56ff720fdcb0bf9e2b05b718 /lib/Makefile.in
parent7902c4708906b7700192b98959b60f16c237f03a (diff)
downloadcoreutils-0d9e008da2065dac4574ccdfad35af4cc6e3d1b2.tar.xz
.
Diffstat (limited to 'lib/Makefile.in')
-rw-r--r--lib/Makefile.in14
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.