"make install-strip" works. (Greg Louis)
authorMartin Pool <mbp@samba.org>
Thu, 14 Mar 2002 10:38:55 +0000 (10:38 +0000)
committerMartin Pool <mbp@samba.org>
Thu, 14 Mar 2002 10:38:55 +0000 (10:38 +0000)
Makefile.in
NEWS

index a4f898c..d7bdf7c 100644 (file)
@@ -12,6 +12,7 @@ CFLAGS=@CFLAGS@
 LDFLAGS=@LDFLAGS@
 
 INSTALLCMD=@INSTALL@
+INSTALLMAN=@INSTALL@
 
 srcdir=@srcdir@
 VPATH=$(srcdir)
@@ -56,8 +57,8 @@ install: all
        ${INSTALLCMD} -m 755 rsync ${bindir}
        -mkdir -p ${mandir}/man1
        -mkdir -p ${mandir}/man5
-       ${INSTALLCMD} -m 644 $(srcdir)/rsync.1 ${mandir}/man1
-       ${INSTALLCMD} -m 644 $(srcdir)/rsyncd.conf.5 ${mandir}/man5
+       ${INSTALLMAN} -m 644 $(srcdir)/rsync.1 ${mandir}/man1
+       ${INSTALLMAN} -m 644 $(srcdir)/rsyncd.conf.5 ${mandir}/man5
 
 install-strip:
        $(MAKE) INSTALLCMD='$(INSTALLCMD) -s' install
diff --git a/NEWS b/NEWS
index e69de29..538a8d4 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -0,0 +1,5 @@
+rsync changes since last release
+
+  ENHANCEMENTS:
+
+    * "make install-strip" works.  (Greg Louis)