diff options
author | Waldemar Brodkorb <wbx@uclibc-ng.org> | 2016-05-03 13:01:44 +0200 |
---|---|---|
committer | Waldemar Brodkorb <wbx@uclibc-ng.org> | 2016-05-03 13:01:44 +0200 |
commit | d246a22506df52c66ef848fbe14bf6b6eb008d4e (patch) | |
tree | 51c7b649611d1f971f4a389c8e133eae3c6bb825 /scripts | |
parent | 64e26e3516b9b52e9507da9ffad5c5d44c476b4d (diff) |
handle new binfmt suffix
Diffstat (limited to 'scripts')
-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 946f5ffa3..fcaeb7d63 100755 --- a/scripts/update-rcconf +++ b/scripts/update-rcconf @@ -21,6 +21,9 @@ fi if [ ! -z ${ADK_TARGET_ABI} ];then suffix=${suffix}_${ADK_TARGET_ABI} fi +if [ ! -z ${ADK_TARGET_BINFMT} ];then + suffix=${suffix}_${ADK_TARGET_BINFMT} +fi rcconf=$(ls $topdir/root_${suffix}/etc/rc.conf) |