From: GiWoong Kim Date: Fri, 23 Aug 2013 02:15:32 +0000 (+0900) Subject: emulator: remove double quotation marks from the build info X-Git-Tag: Tizen_Studio_1.3_Release_p2.3.1~811 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=00b49bddfddd18d20320c81e4341a459df3009f9;p=sdk%2Femulator%2Fqemu.git emulator: remove double quotation marks from the build info Change-Id: Ie48001d23c3ec79d02d36306d050d441a64668d4 Signed-off-by: GiWoong Kim --- diff --git a/tizen/src/Makefile b/tizen/src/Makefile index adaca0d3db..dc2c53dd36 100644 --- a/tizen/src/Makefile +++ b/tizen/src/Makefile @@ -54,10 +54,10 @@ build_info: @echo "/* Automatically generated by Makefile - do not modify! */" > build_info.h @echo "const char build_version[] = \"`cat VERSION`\";" >> build_info.h @echo "const char build_date[] = \"`date +"%F %T %Z"`\";" >> build_info.h - @echo "const char pkginfo_version[] = \"`sed -n '1p' ./../../package/pkginfo.manifest`\";" >> build_info.h - @echo "const char pkginfo_maintainer[] = \"`sed -n '2p' ./../../package/pkginfo.manifest`\";" >> build_info.h + @echo "const char pkginfo_version[] = \"`sed -n '1p' ./../../package/pkginfo.manifest | sed 's/\"//g'`\";" >> build_info.h + @echo "const char pkginfo_maintainer[] = \"`sed -n '2p' ./../../package/pkginfo.manifest | sed 's/\"//g'`\";" >> build_info.h @echo "const char pkginfo_githead[] = \"`git rev-parse HEAD`\";" >> build_info.h - @echo "const char latest_gittag[] = \"`git for-each-ref --count=1 --sort=-taggerdate refs/tags/ --format='Latest Git Tag : %(refname:short) (%(subject))'`\";" >> build_info.h + @echo "const char latest_gittag[] = \"`git for-each-ref --count=1 --sort=-taggerdate refs/tags/ --format='Latest Git Tag : %(refname:short) (%(subject))' | sed 's/\"//g'`\";" >> build_info.h ffmpeg: cd ../distrib/libav/ && $(MAKE)