summaryrefslogtreecommitdiff
path: root/openwrt/package/base-files
diff options
context:
space:
mode:
authorNicolas Thill <nico@openwrt.org>2005-11-27 19:59:03 +0000
committerNicolas Thill <nico@openwrt.org>2005-11-27 19:59:03 +0000
commitf546292f789ec6af19af736f48990f3e0215d177 (patch)
tree51af7c7dbe15cbd96c7943abb4e3fbd99c0672b1 /openwrt/package/base-files
parentc43a33ff9d5500b70447463408fd05f2f47f4ddb (diff)
downloadmtk-20170518-f546292f789ec6af19af736f48990f3e0215d177.zip
mtk-20170518-f546292f789ec6af19af736f48990f3e0215d177.tar.gz
mtk-20170518-f546292f789ec6af19af736f48990f3e0215d177.tar.bz2
don't use locales when retrieving subversion release number (closes: #54)
SVN-Revision: 2557
Diffstat (limited to 'openwrt/package/base-files')
-rw-r--r--openwrt/package/base-files/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/openwrt/package/base-files/Makefile b/openwrt/package/base-files/Makefile
index 48099c9..16169fa 100644
--- a/openwrt/package/base-files/Makefile
+++ b/openwrt/package/base-files/Makefile
@@ -6,7 +6,7 @@ PKG_NAME:=base-files
PKG_RELEASE:=6
PKG_BUILD_DIR:=$(BUILD_DIR)/base-files
-REV:=${shell svn info | grep Revision | cut -d ' ' -f 2}
+REV:=$(shell LANG=C svn info | awk '/^Revision:/ { print$$2 }' )
ifeq ($(REV),)
REV:=0
endif