diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2018-06-03 21:30:19 +0200 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2018-06-03 21:30:19 +0200 |
commit | cdc98a6b867db7436529df2a11b8b091809a579c (patch) | |
tree | 5e71426c4559a6e125e363cd1be8371f864db553 /scripts/update-rcconf | |
parent | 1433cebb53a5b8b639e4e0c06d286fa7e7e31c27 (diff) |
add suffix for instruction set
Diffstat (limited to 'scripts/update-rcconf')
-rwxr-xr-x | scripts/update-rcconf | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/scripts/update-rcconf b/scripts/update-rcconf index 87c483a1c..7dc272e73 100755 --- a/scripts/update-rcconf +++ b/scripts/update-rcconf @@ -30,6 +30,9 @@ fi if [ ! -z ${ADK_TARGET_BINFMT} ];then suffix=${suffix}_${ADK_TARGET_BINFMT} fi +if [ ! -z ${ADK_TARGET_INSTRUCTION_SET} ];then + suffix=${suffix}_${ADK_TARGET_INSTRUCTION_SET} +fi if [ -z ${ADK_TARGET_WITH_MMU} ];then suffix=${suffix}_nommu fi |