summaryrefslogtreecommitdiff
path: root/meta-google
diff options
context:
space:
mode:
authorWilliam A. Kennington III <wak@google.com>2022-03-08 03:27:39 +0300
committerWilliam A. Kennington III <wak@google.com>2022-03-08 03:29:44 +0300
commit6d8f6a30ac4ed23bf68e95de66a3a10306be1e1d (patch)
tree57b2dd66c1b3bd197c4241fe4e4f7199c80b4900 /meta-google
parent4818d0e67f65eeb3ac0d0947556c6a8dc41cdc79 (diff)
downloadopenbmc-6d8f6a30ac4ed23bf68e95de66a3a10306be1e1d.tar.xz
meta-google: gbmc-mac-config: Fix for single quotes
Change-Id: Idc9f3be1f11612f093b12df79365c7c66667eb04 Signed-off-by: William A. Kennington III <wak@google.com>
Diffstat (limited to 'meta-google')
-rw-r--r--meta-google/recipes-google/networking/gbmc-mac-config.bb2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta-google/recipes-google/networking/gbmc-mac-config.bb b/meta-google/recipes-google/networking/gbmc-mac-config.bb
index 861d0a667c..7e7f9968e7 100644
--- a/meta-google/recipes-google/networking/gbmc-mac-config.bb
+++ b/meta-google/recipes-google/networking/gbmc-mac-config.bb
@@ -35,7 +35,7 @@ do_install:append() {
fi
# Build time dictionary sanity check
- bash -c 'declare -A dict=(${GBMC_MAC_IF_MAP})'
+ bash -c "declare -A dict=(${GBMC_MAC_IF_MAP})"
sed gbmc-mac-config.sh.in \
-e 's#@EEPROM@#${GBMC_MAC_EEPROM_OF_NAME}#' \