From: Wayne Davison Date: Sun, 2 May 2004 16:52:52 +0000 (+0000) Subject: Renamed variable STRIP to INSTALL_STRIP to avoid an accidental match X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/commitdiff_plain/af45f9e27e71b8ea5aca226f39a44eb88f83ce92 Renamed variable STRIP to INSTALL_STRIP to avoid an accidental match with an environment variable in OpenBSD. --- diff --git a/Makefile.in b/Makefile.in index 83163a62..6cd65e2b 100644 --- a/Makefile.in +++ b/Makefile.in @@ -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)