diff options
author | Peter Korsgaard <jacmet@sunsite.dk> | 2008-07-07 05:08:39 +0000 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2008-07-07 05:08:39 +0000 |
commit | 1c1712eb0eb45e945362d2ef83488bf6eac9af59 (patch) | |
tree | 07664da715e489f1f60ba812df00d0ff8c4bbfe1 /package | |
parent | c6b42b484830bedbc66e1fd784da00cda65db8b2 (diff) | |
download | buildroot-novena-1c1712eb0eb45e945362d2ef83488bf6eac9af59.tar.gz buildroot-novena-1c1712eb0eb45e945362d2ef83488bf6eac9af59.zip |
Makefile.autotools.in: revert broken r22659
Ulfs r22659 commit broke make source-check/external deps, so reverting it.
Diffstat (limited to 'package')
-rw-r--r-- | package/Makefile.autotools.in | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/package/Makefile.autotools.in b/package/Makefile.autotools.in index 574ef1cf5..16fc37192 100644 --- a/package/Makefile.autotools.in +++ b/package/Makefile.autotools.in @@ -132,7 +132,7 @@ TAR ?= tar $(BUILD_DIR)/%/.stamp_downloaded: # support make source-check/external-deps ifeq ($(MAKELEVEL),1) - -$(Q)test -e $(DL_DIR)/$($(PKG)_SOURCE) || $(WGET) -P $(DL_DIR) $($(PKG)_SITE)/$($(PKG)_SOURCE) + $(WGET) -P $(DL_DIR) $($(PKG)_SITE)/$($(PKG)_SOURCE) $(if $($(PKG)_PATCH),$(WGET) -P $(DL_DIR) $($(PKG)_SITE)/$($(PKG)_PATCH)) else $(call MESSAGE,"Downloading") @@ -395,5 +395,3 @@ endif endef # :mode=makefile: - - |