]> git.ipfire.org Git - thirdparty/coreutils.git/commitdiff
.
authorJim Meyering <jim@meyering.net>
Tue, 23 Aug 2005 16:58:04 +0000 (16:58 +0000)
committerJim Meyering <jim@meyering.net>
Tue, 23 Aug 2005 16:58:04 +0000 (16:58 +0000)
Makefile.in
lib/Makefile.in
src/Makefile.in

index a789fda68d26896db9f6c6dc4f91fbf59312386f..b90a38a78129a52d1c7a3ea342b5cead5c1b678b 100644 (file)
@@ -314,6 +314,7 @@ EXTRA_DIST = Makefile.cfg Makefile.maint GNUmakefile \
   .kludge-stamp .prev-version THANKS-to-translators THANKStt.in \
   .x-sc_space_tab .x-sc_sun_os_names \
   .x-sc_file_system .x-sc_obsolete_symbols \
+  .x-sc_useless_cpp_parens \
   announce-gen \
   m4/ChangeLog \
   old/fileutils/ChangeLog \
index 73e73a41d36b3a3fc7f156bfdf71d6d157c474ea..c669b0301302da7bc804b21cea3f54872fd50ebd 100644 (file)
@@ -217,8 +217,9 @@ ARFLAGS = cru
 libcoreutils_a_AR = $(AR) $(ARFLAGS)
 am__DEPENDENCIES_1 = @LIBOBJS@
 am__DEPENDENCIES_2 = @ALLOCA@
-am_libcoreutils_a_OBJECTS = allocsa.$(OBJEXT) full-read.$(OBJEXT) \
-       full-write.$(OBJEXT) localcharset.$(OBJEXT) mbswidth.$(OBJEXT) \
+am_libcoreutils_a_OBJECTS = allocsa.$(OBJEXT) fprintime.$(OBJEXT) \
+       full-read.$(OBJEXT) full-write.$(OBJEXT) \
+       localcharset.$(OBJEXT) mbswidth.$(OBJEXT) \
        readtokens0.$(OBJEXT) time_r.$(OBJEXT) unicodeio.$(OBJEXT) \
        xalloc-die.$(OBJEXT) xgethostname.$(OBJEXT) xmemcoll.$(OBJEXT) \
        xstrndup.$(OBJEXT) xstrtoimax.$(OBJEXT) xstrtoumax.$(OBJEXT)
@@ -369,13 +370,13 @@ noinst_LIBRARIES = libcoreutils.a
 LDADD = $(noinst_LIBRARIES)
 AM_CPPFLAGS = -I.. -I$(srcdir)
 libcoreutils_a_SOURCES = allocsa.c allocsa.h euidaccess.h exit.h \
-       full-read.c full-read.h full-write.c full-write.h gettext.h \
-       localcharset.c localcharset.h mbswidth.c mbswidth.h \
-       readtokens0.c readtokens0.h time_r.c time_r.h unicodeio.c \
-       unicodeio.h verify.h xalloc-die.c xgethostname.c \
-       xgethostname.h xmemcoll.c xmemcoll.h xstrndup.c xstrndup.h \
-       xstrtoimax.c xstrtoumax.c printf-args.h printf-parse.h \
-       vasprintf.h vasnprintf.h
+       fprintime.c fprintime.h full-read.c full-read.h full-write.c \
+       full-write.h gettext.h localcharset.c localcharset.h \
+       mbswidth.c mbswidth.h readtokens0.c readtokens0.h time_r.c \
+       time_r.h unicodeio.c unicodeio.h verify.h xalloc-die.c \
+       xgethostname.c xgethostname.h xmemcoll.c xmemcoll.h xstrndup.c \
+       xstrndup.h xstrtoimax.c xstrtoumax.c printf-args.h \
+       printf-parse.h vasprintf.h vasnprintf.h
 libcoreutils_a_LIBADD = $(LIBOBJS) $(ALLOCA)
 libcoreutils_a_DEPENDENCIES = $(libcoreutils_a_LIBADD)
 lib_OBJECTS = $(libcoreutils_a_OBJECTS)
@@ -614,6 +615,7 @@ distclean-compile:
 @AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/xstrtoul.Po@am__quote@
 @AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/yesno.Po@am__quote@
 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/allocsa.Po@am__quote@
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/fprintime.Po@am__quote@
 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/full-read.Po@am__quote@
 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/full-write.Po@am__quote@
 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/localcharset.Po@am__quote@
index 83614dcf355bb0af5077f23f3bd67648f4edce2c..69813b1c4d0bbcd81f261ec7e9289845f853b7d0 100644 (file)
@@ -945,7 +945,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 \