summaryrefslogtreecommitdiffstats
path: root/rules/wget.make
diff options
context:
space:
mode:
authorRobert Schwebel <r.schwebel@pengutronix.de>2008-07-31 18:19:11 +0000
committerRobert Schwebel <r.schwebel@pengutronix.de>2008-07-31 18:19:11 +0000
commita337429a9f19efaec442cc424b965f0fe74aa9f0 (patch)
treec404fcaca0093af3f1fe3ad40e9b7ec15e252902 /rules/wget.make
parent7c7f86ba796c4f6c364e8ccf8b93348a613f94f1 (diff)
downloadptxdist-a337429a9f19efaec442cc424b965f0fe74aa9f0.tar.gz
ptxdist-a337429a9f19efaec442cc424b965f0fe74aa9f0.tar.xz
* wget: bug variable name in wget.make; patch by Erwin Rol.
When compiling wget it breaks with the following error message: -------------------- target: wget.extract -------------------- extract: archive=/home/erwin/Download/ptxdist_cache//wget-1.9.1.tar.gz extract: dest=/data/Clients/Annax/Projects/InfoSys/ptxdist/projects/ETH2/platform-ETH2/build-target Error: empty parameter to "patchin()" make: *** [/data/Clients/Annax/Projects/InfoSys/ptxdist/projects/ETH2/platform-ETH2/state/wget.extract] Error 1 This patch renames the variable from WGET to WGET_PACKET, But this can't be the right solution. Some things like extract seem to need WGET and things like patching need WGET_PACKET. So this is more a bug report than a patch. git-svn-id: https://svn.pengutronix.de/svn/ptxdist/trunks/ptxdist-trunk@8710 33e552b5-05e3-0310-8538-816dae2090ed
Diffstat (limited to 'rules/wget.make')
-rw-r--r--rules/wget.make4
1 files changed, 2 insertions, 2 deletions
diff --git a/rules/wget.make b/rules/wget.make
index 185d1df40..def9ae588 100644
--- a/rules/wget.make
+++ b/rules/wget.make
@@ -2,7 +2,7 @@
# $Id: template 2516 2005-04-25 10:29:55Z rsc $
#
# Copyright (C) 2005 by Robert Schwebel
-#
+#
# See CREDITS for details about who has contributed to this project.
#
# For further information about the PTXdist project and license conditions
@@ -49,7 +49,7 @@ $(STATEDIR)/wget.extract: $(wget_extract_deps_default)
@$(call targetinfo, $@)
@$(call clean, $(WGET_DIR))
@$(call extract, WGET)
- @$(call patchin, WGET)
+ @$(call patchin, WGET_PACKET)
@$(call touch, $@)
# ----------------------------------------------------------------------------