diff options
author | Jim Meyering <jim@meyering.net> | 2006-02-06 09:05:29 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2006-02-06 09:05:29 +0000 |
commit | bfd6ff089f815e755a7ef78f1385966889677acf (patch) | |
tree | 4990b2961e4c30882f83ee0e66e956b7442887f7 | |
parent | 32d3c24ad6c60c8a21231f6ab84d7350468e362f (diff) | |
download | coreutils-bfd6ff089f815e755a7ef78f1385966889677acf.tar.xz |
.
-rw-r--r-- | Makefile.in | 1 | ||||
-rw-r--r-- | src/Makefile.in | 4 |
2 files changed, 3 insertions, 2 deletions
diff --git a/Makefile.in b/Makefile.in index ff03960bb..ceb4dfcee 100644 --- a/Makefile.in +++ b/Makefile.in @@ -340,6 +340,7 @@ EXTRA_DIST = Makefile.cfg Makefile.maint GNUmakefile \ .x-sc_no_if_have_config_h \ .x-sc_require_config_h \ .x-sc_prohibit_assert_without_use \ + .x-sc_two_space_separator_in_usage \ announce-gen \ build-aux/cvsu \ m4/ChangeLog \ diff --git a/src/Makefile.in b/src/Makefile.in index faabbb4be..23e29dcc7 100644 --- a/src/Makefile.in +++ b/src/Makefile.in @@ -65,7 +65,7 @@ bin_PROGRAMS = [$(EXEEXT) chgrp$(EXEEXT) chown$(EXEEXT) chmod$(EXEEXT) \ noinst_PROGRAMS = setuidgid$(EXEEXT) subdir = src DIST_COMMON = $(noinst_HEADERS) $(srcdir)/Makefile.am \ - $(srcdir)/Makefile.in TODO + $(srcdir)/Makefile.in ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/acl.m4 $(top_srcdir)/m4/afs.m4 \ $(top_srcdir)/m4/alloca.m4 $(top_srcdir)/m4/allocsa.m4 \ @@ -1012,7 +1012,7 @@ uninstall-binPROGRAMS: done clean-binPROGRAMS: - -test -z "$(bin_PROGRAMS)" || rm -f $(bin_PROGRAMS) + -test -z "$(bin_PROGRAMS)" || rm -f $(bin_PROGRAMS) > /dev/null 2>&1 || /bin/rm -f $(bin_PROGRAMS) installcheck-binPROGRAMS: $(bin_PROGRAMS) bad=0; pid=$$$$; list="$(bin_PROGRAMS)"; for p in $$list; do \ |