diff options
author | Ulf Samuelsson <ulf.samuelsson@atmel.com> | 2007-07-11 14:06:06 +0000 |
---|---|---|
committer | Ulf Samuelsson <ulf.samuelsson@atmel.com> | 2007-07-11 14:06:06 +0000 |
commit | e1621a4a2a6b1750402d0228cf85920814babc9a (patch) | |
tree | 427f7759087d6775d41f68513dbb417485d0ee45 /package/wipe/wipe.mk | |
parent | cd599b61144a0f273d2712ffee64ea8e4af2cdbd (diff) | |
download | buildroot-novena-e1621a4a2a6b1750402d0228cf85920814babc9a.tar.gz buildroot-novena-e1621a4a2a6b1750402d0228cf85920814babc9a.zip |
Use <package>_VERSION in all <package>.mk instead of <package>_VER
Diffstat (limited to 'package/wipe/wipe.mk')
-rw-r--r-- | package/wipe/wipe.mk | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/package/wipe/wipe.mk b/package/wipe/wipe.mk index 477af50ce..f56c06d15 100644 --- a/package/wipe/wipe.mk +++ b/package/wipe/wipe.mk @@ -2,13 +2,14 @@ # # wipe # -# http://abaababa.ouvaton.org/wipe/wipe-0.20.tar.gz +# http://abaababa.ouvaton.org/wipe/wipe-$(WIPE_VERSION).tar.gz ############################################################# -WIPE_SOURCE:=wipe-0.20.tar.gz +WIPE_VERSION:=0.20 +WIPE_SOURCE:=wipe-$(WIPE_VERSION).tar.gz #WIPE_PATCH:=wipe_0.2-19.diff.gz WIPE_SITE:=http://abaababa.ouvaton.org/wipe WIPE_CAT:=$(ZCAT) -WIPE_DIR:=$(BUILD_DIR)/wipe-0.20 +WIPE_DIR:=$(BUILD_DIR)/wipe-$(WIPE_VERSION) WIPE_BINARY:=wipe WIPE_TARGET_BINARY:=bin/wipe |