diff options
author | Patrick 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) |
commit | 064228c035c3e78de680c0450ed95e54a2064ef6 (patch) | |
tree | 47247e3ff61039ad52e88ae544fea1e2432180b0 /build | |
parent | ca74be29b8f300271bb40b96b02d3d08226ab6b8 (diff) |
build: Replace sed "s" command "i" flag
There's no such flag in standard sed.
Diffstat (limited to 'build')
-rwxr-xr-x | build | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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: |