f3af8a5b07
Bump to patchlevel 3 since 2 is gone upstream. Also switch to use http://snapshot.debian.org/ instead of BR2_DEBIAN_MIRROR to avoid disappearing packages. Signed-off-by: Axel Lin <axel.lin@ingics.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
24 lines
855 B
Makefile
24 lines
855 B
Makefile
################################################################################
|
|
#
|
|
# setserial
|
|
#
|
|
################################################################################
|
|
|
|
SETSERIAL_VERSION = 2.17
|
|
SETSERIAL_PATCH = setserial_2.17-45.3.diff.gz
|
|
SETSERIAL_SOURCE = setserial_$(SETSERIAL_VERSION).orig.tar.gz
|
|
SETSERIAL_SITE = http://snapshot.debian.org/archive/debian/20131001T214925Z/pool/main/s/setserial/
|
|
|
|
define SETSERIAL_APPLY_DEBIAN_PATCHES
|
|
# Touching gorhack.h is needed for the Debian patch 18 to work
|
|
if [ -d $(@D)/debian/patches ]; then \
|
|
touch $(@D)/gorhack.h; \
|
|
rm $(@D)/debian/patches/01_makefile.dpatch; \
|
|
support/scripts/apply-patches.sh $(@D) $(@D)/debian/patches *.dpatch; \
|
|
fi
|
|
endef
|
|
|
|
SETSERIAL_POST_PATCH_HOOKS += SETSERIAL_APPLY_DEBIAN_PATCHES
|
|
|
|
$(eval $(autotools-package))
|