summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--man/Makefile.in2
-rw-r--r--src/Makefile.in2
2 files changed, 2 insertions, 2 deletions
diff --git a/man/Makefile.in b/man/Makefile.in
index 2f9e0076b..1b43cc3f7 100644
--- a/man/Makefile.in
+++ b/man/Makefile.in
@@ -426,7 +426,7 @@ mknod.1: $(common_dep) $(srcdir)/mknod.x ../src/mknod.c
mv.1: $(common_dep) $(srcdir)/mv.x ../src/mv.c
nice.1: $(common_dep) $(srcdir)/nice.x ../src/nice.c
nl.1: $(common_dep) $(srcdir)/nl.x ../src/nl.c
-nohup.1: $(common_dep) $(srcdir)/nohup.x ../src/nohup.sh
+nohup.1: $(common_dep) $(srcdir)/nohup.x ../src/nohup.c
od.1: $(common_dep) $(srcdir)/od.x ../src/od.c
paste.1: $(common_dep) $(srcdir)/paste.x ../src/paste.c
pathchk.1: $(common_dep) $(srcdir)/pathchk.x ../src/pathchk.c
diff --git a/src/Makefile.in b/src/Makefile.in
index 221fa4321..b9b01b7b8 100644
--- a/src/Makefile.in
+++ b/src/Makefile.in
@@ -867,7 +867,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 \