don't use locales when retrieving subversion release number (closes: #54)
SVN-Revision: 2557
This commit is contained in:
parent
c43a33ff9d
commit
f546292f78
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue