diff options
| author | Frank Gevaerts <frank@gevaerts.be> | 2012-07-27 14:54:04 +0200 |
|---|---|---|
| committer | Frank Gevaerts <frank@gevaerts.be> | 2012-07-27 14:55:03 +0200 |
| commit | 9a84bcfe4b9821c68322a1a91da9f16d0bd2a4bc (patch) | |
| tree | 81ae63c1eda42059742ab3ee0537877b46f06c18 | |
| parent | 132fcca4b26865a3152502856928cec8d87496ce (diff) | |
| download | rockbox-9a84bcfe4b9821c68322a1a91da9f16d0bd2a4bc.zip rockbox-9a84bcfe4b9821c68322a1a91da9f16d0bd2a4bc.tar.gz rockbox-9a84bcfe4b9821c68322a1a91da9f16d0bd2a4bc.tar.bz2 rockbox-9a84bcfe4b9821c68322a1a91da9f16d0bd2a4bc.tar.xz | |
Add quotes around APPVERSION to avoid issues when it has spaces.
Change-Id: If281c0e37f56f81cb5dd57e264f82fb32bc08d3b
| -rw-r--r-- | rbutil/libtools.make | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rbutil/libtools.make b/rbutil/libtools.make index fda9b68..2afe4d2 100644 --- a/rbutil/libtools.make +++ b/rbutil/libtools.make @@ -24,7 +24,7 @@ TOP := $(dir $(lastword $(MAKEFILE_LIST))) # overwrite for releases APPVERSION ?= $(shell $(TOP)/../tools/version.sh ../) -CFLAGS += -DVERSION=\"$(APPVERSION)\" +CFLAGS += -DVERSION=\""$(APPVERSION)"\" TARGET_DIR ?= $(shell pwd)/ # use POSIX/C99 printf on windows |