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/libtool/libtool.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/libtool/libtool.mk')
-rw-r--r-- | package/libtool/libtool.mk | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/package/libtool/libtool.mk b/package/libtool/libtool.mk index 82f96ae41..57fd31fb5 100644 --- a/package/libtool/libtool.mk +++ b/package/libtool/libtool.mk @@ -3,13 +3,13 @@ # libtool # ############################################################# -LIBTOOL_VER:=1.5.22 -LIBTOOL_SOURCE:=libtool-$(LIBTOOL_VER).tar.gz +LIBTOOL_VERSION:=1.5.22 +LIBTOOL_SOURCE:=libtool-$(LIBTOOL_VERSION).tar.gz LIBTOOL_SITE:=http://ftp.gnu.org/pub/gnu/libtool LIBTOOL_CAT:=$(ZCAT) -LIBTOOL_SRC_DIR:=$(TOOL_BUILD_DIR)/libtool-$(LIBTOOL_VER) -LIBTOOL_DIR:=$(BUILD_DIR)/libtool-$(LIBTOOL_VER) -LIBTOOL_HOST_DIR:=$(TOOL_BUILD_DIR)/libtool-$(LIBTOOL_VER)-host +LIBTOOL_SRC_DIR:=$(TOOL_BUILD_DIR)/libtool-$(LIBTOOL_VERSION) +LIBTOOL_DIR:=$(BUILD_DIR)/libtool-$(LIBTOOL_VERSION) +LIBTOOL_HOST_DIR:=$(TOOL_BUILD_DIR)/libtool-$(LIBTOOL_VERSION)-host LIBTOOL_BINARY:=libtool LIBTOOL_TARGET_BINARY:=usr/bin/libtool |