mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-02-25 20:01:50 +00:00
Fix gawk-isms from bug 299997, patch by Pawel Chmielowski <prefiks@aviary.pl>
This commit is contained in:
parent
c7c435dffa
commit
a7ee7a9658
@ -66,7 +66,7 @@ DIST_FILES = application.ini
|
||||
|
||||
# GRE_BUILD_ID is only available in nsBuildID.h in a form that we can't use
|
||||
# directly. So munge it. Beware makefile and shell escaping
|
||||
AWK_EXPR = '/\#define GRE_BUILD_ID/ { print gensub(/"/, "", "g", $$3) }'
|
||||
AWK_EXPR = '/\#define GRE_BUILD_ID/ { gsub(/"/, "", "g", $$3); print $$3 }'
|
||||
AWK_CMD = awk $(AWK_EXPR) < $(DEPTH)/config/nsBuildID.h
|
||||
|
||||
GRE_BUILD_ID = $(shell $(AWK_CMD))
|
||||
|
Loading…
x
Reference in New Issue
Block a user