summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPatrick McDermott <patrick.mcdermott@libiquity.com>2019-05-30 18:16:36 (EDT)
committer Patrick McDermott <patrick.mcdermott@libiquity.com>2019-05-30 18:18:40 (EDT)
commit064228c035c3e78de680c0450ed95e54a2064ef6 (patch)
tree47247e3ff61039ad52e88ae544fea1e2432180b0
parentca74be29b8f300271bb40b96b02d3d08226ab6b8 (diff)
build: Replace sed "s" command "i" flag
There's no such flag in standard sed.
-rwxr-xr-xbuild3
1 files changed, 2 insertions, 1 deletions
diff --git a/build b/build
index 110c6ee..c53e1b2 100755
--- a/build
+++ b/build
@@ -1,6 +1,7 @@
#! /usr/bin/make -f
-gcc_base_version = $$(sed 's/^GCC-Base-Version: //i' ../substvars)
+gcc_base_version = $$(tr '[:upper:]' '[:lower:]' <../substvars | \
+ sed 's/^gcc-base-version: //')
build: