Renamed variable STRIP to INSTALL_STRIP to avoid an accidental match
authorWayne Davison <wayned@samba.org>
Sun, 2 May 2004 16:52:52 +0000 (16:52 +0000)
committerWayne Davison <wayned@samba.org>
Sun, 2 May 2004 16:52:52 +0000 (16:52 +0000)
with an environment variable in OpenBSD.

Makefile.in

index 83163a6..6cd65e2 100644 (file)
@@ -62,14 +62,14 @@ man: rsync.1 rsyncd.conf.5
 
 install: all
        -mkdir -p ${DESTDIR}${bindir}
-       ${INSTALLCMD} ${STRIP} -m 755 rsync$(EXEEXT) ${DESTDIR}${bindir}
+       ${INSTALLCMD} ${INSTALL_STRIP} -m 755 rsync$(EXEEXT) ${DESTDIR}${bindir}
        -mkdir -p ${DESTDIR}${mandir}/man1
        -mkdir -p ${DESTDIR}${mandir}/man5
        ${INSTALLMAN} -m 644 $(srcdir)/rsync.1 ${DESTDIR}${mandir}/man1
        ${INSTALLMAN} -m 644 $(srcdir)/rsyncd.conf.5 ${DESTDIR}${mandir}/man5
 
 install-strip:
-       $(MAKE) STRIP='-s' install
+       $(MAKE) INSTALL_STRIP='-s' install
 
 rsync$(EXEEXT): $(OBJS)
        $(CC) $(CFLAGS) $(LDFLAGS) -o $@ $(OBJS) $(LIBS)