From ff8e9a4ecbe70564c8649ea4ed69f28bec77dfa7 Mon Sep 17 00:00:00 2001 From: Philip Prindeville Date: Wed, 24 Jan 2018 17:33:21 -0700 Subject: treewide: combine VERSION_SED and VERSION_SED_SCRIPT We don't need two versions of this. The escaping quotes is so that the sed commands aren't misinterpreted by shell; it has nothing to do with the contents of the file, thus one version is adequate. Signed-off-by: Philip Prindeville --- include/version.mk | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'include/version.mk') diff --git a/include/version.mk b/include/version.mk index 6c6eb75ff6..ab427ecba8 100644 --- a/include/version.mk +++ b/include/version.mk @@ -85,7 +85,7 @@ $(subst &,\&,$(subst $(comma),\$(comma),$(subst ','\'',$(subst \,\\,$(1))))) endef #' -VERSION_SED:=$(SED) 's,%U,$(call sed_escape,$(VERSION_REPO)),g' \ +VERSION_SED_SCRIPT:=$(SED) 's,%U,$(call sed_escape,$(VERSION_REPO)),g' \ -e 's,%V,$(call sed_escape,$(VERSION_NUMBER)),g' \ -e 's,%v,\L$(call sed_escape,$(subst $(space),_,$(VERSION_NUMBER))),g' \ -e 's,%C,$(call sed_escape,$(VERSION_CODE)),g' \ @@ -104,4 +104,3 @@ VERSION_SED:=$(SED) 's,%U,$(call sed_escape,$(VERSION_REPO)),g' \ -e 's,%P,$(call sed_escape,$(VERSION_PRODUCT)),g' \ -e 's,%h,$(call sed_escape,$(VERSION_HWREV)),g' -VERSION_SED_SCRIPT:=$(VERSION_SED) -- cgit v1.2.3