Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion Makefile.in
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ LIBOBJDIR=lib/

INSTALLCMD=@INSTALL@
INSTALLMAN=@INSTALL@
STRIP=@STRIP@

srcdir=@srcdir@
MKDIR_P=@MKDIR_P@
Expand Down Expand Up @@ -109,7 +110,8 @@ install-ssl-daemon: stunnel-rsyncd.conf
install-all: install install-ssl-daemon

install-strip:
$(MAKE) INSTALL_STRIP='-s' install
$(MAKE) install
$(STRIP) $(DESTDIR)$(bindir)/rsync$(EXEEXT)

.PHONY: uninstall
uninstall:
Expand Down
1 change: 1 addition & 0 deletions configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,7 @@ AC_PROG_CXX
AC_PROG_AWK
AC_PROG_EGREP
AC_PROG_INSTALL
AC_CHECK_TOOL([STRIP], [strip], [strip])
AC_PROG_MKDIR_P
AC_SUBST(SHELL)
AC_PATH_PROG([PERL], [perl])
Expand Down