rsync: bump version

Fixes CVE-2011-1097 and various other issues, see NEWS for details:

http://rsync.samba.org/ftp/rsync/src/rsync-3.0.8-NEWS

At the same time get rid of unneeded install / install-strip handling.

Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
This commit is contained in:
Peter Korsgaard 2011-03-31 22:44:24 +02:00
parent 0a70aa0cc5
commit 06002a58b5

View file

@ -4,19 +4,11 @@
#
#############################################################
RSYNC_VERSION := 3.0.7
RSYNC_VERSION := 3.0.8
RSYNC_SOURCE := rsync-$(RSYNC_VERSION).tar.gz
RSYNC_SITE := http://rsync.samba.org/ftp/rsync/src
RSYNC_INSTALL_STAGING = NO
RSYNC_INSTALL_TARGET = YES
RSYNC_CONF_OPT = $(if $(BR2_ENABLE_DEBUG),--enable-debug,--disable-debug)
ifeq ($(BR2_ENABLE_DEBUG),y)
RSYNC_INSTALL_TARGET_OPT = DESTDIR=$(TARGET_DIR) INSTALLCMD='./install-sh -c' \
install
else
RSYNC_INSTALL_TARGET_OPT = DESTDIR=$(TARGET_DIR) INSTALLCMD='./install-sh -c' \
STRIPPROG="$(TARGET_STRIP)" install-strip
endif
RSYNC_CONF_OPT = --with-included-popt
$(eval $(call AUTOTARGETS,package,rsync))