summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>1999-12-19 10:22:47 +0000
committerJim Meyering <jim@meyering.net>1999-12-19 10:22:47 +0000
commit00317a749dce582303dfac0795b1f95cb08f5d51 (patch)
treeffc55b4bd9e9283e0f6a7bf5b6425792c42b01b9
parent6c6417c31732d7247709ef5013642d0fb4286fed (diff)
downloadgnulib-00317a749dce582303dfac0795b1f95cb08f5d51.tar.gz
.
-rw-r--r--lib/Makefile.in14
-rw-r--r--m4/Makefile.am1
-rw-r--r--m4/Makefile.in1
3 files changed, 14 insertions, 2 deletions
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/m4/Makefile.am b/m4/Makefile.am
index 7923df8e1b..d9b23d305d 100644
--- a/m4/Makefile.am
+++ b/m4/Makefile.am
@@ -31,6 +31,7 @@ lchown.m4 \
lcmessage.m4 \
link-follow.m4 \
ls-mntd-fs.m4 \
+lstat-slash.m4 \
lstat.m4 \
malloc.m4 \
memcmp.m4 \
diff --git a/m4/Makefile.in b/m4/Makefile.in
index 81f02221ac..9f6e209942 100644
--- a/m4/Makefile.in
+++ b/m4/Makefile.in
@@ -131,6 +131,7 @@ lchown.m4 \
lcmessage.m4 \
link-follow.m4 \
ls-mntd-fs.m4 \
+lstat-slash.m4 \
lstat.m4 \
malloc.m4 \
memcmp.m4 \