From 7266ed46535c4195e2f5cbd644bc5745992b043e Mon Sep 17 00:00:00 2001 From: Peter Korsgaard Date: Sat, 12 Mar 2011 22:10:56 +0100 Subject: Makefile.package.in: make _SOURCE optional For packages where the sources are included in buildroot (E.G. makedevs). We unfortunately already use no _SOURCE to mean _.tar.gz, in several packages (and for git/svn/bzr support), so you need to define _SOURCE to the empty string to use it. Signed-off-by: Peter Korsgaard --- package/Makefile.package.in | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'package/Makefile.package.in') diff --git a/package/Makefile.package.in b/package/Makefile.package.in index 92ce4e22f..84687d58e 100644 --- a/package/Makefile.package.in +++ b/package/Makefile.package.in @@ -232,7 +232,7 @@ ifeq ($(DL_MODE),DOWNLOAD) (test -z $($(PKG)_PATCH) || test -e $(DL_DIR)$($(PKG)_PATCH))) || \ $(call MESSAGE,"Downloading") endif - $(call DOWNLOAD,$($(PKG)_SITE),$($(PKG)_SOURCE)) + $(if $($(PKG)_SOURCE),$(call DOWNLOAD,$($(PKG)_SITE),$($(PKG)_SOURCE))) $(if $($(PKG)_PATCH),$(call DOWNLOAD,$($(PKG)_SITE),$($(PKG)_PATCH))) ifeq ($(DL_MODE),DOWNLOAD) $(Q)mkdir -p $(@D) @@ -243,8 +243,8 @@ endif $(BUILD_DIR)/%/.stamp_extracted: @$(call MESSAGE,"Extracting") $(Q)mkdir -p $(@D) - $(Q)$(INFLATE$(suffix $($(PKG)_SOURCE))) $(DL_DIR)/$($(PKG)_SOURCE) | \ - $(TAR) $(TAR_STRIP_COMPONENTS)=1 -C $(@D) $(TAR_OPTIONS) - + $(Q)$(if $($(PKG)_SOURCE),$(INFLATE$(suffix $($(PKG)_SOURCE))) $(DL_DIR)/$($(PKG)_SOURCE) | \ + $(TAR) $(TAR_STRIP_COMPONENTS)=1 -C $(@D) $(TAR_OPTIONS) -) # some packages have messed up permissions inside $(Q)chmod -R ug+rw $(@D) $(foreach hook,$($(PKG)_POST_EXTRACT_HOOKS),$(call $(hook))$(sep)) -- cgit v1.2.3