diff options
author | Waldemar Brodkorb <wbx@uclibc-ng.org> | 2016-03-09 22:21:49 +0100 |
---|---|---|
committer | Waldemar Brodkorb <wbx@uclibc-ng.org> | 2016-03-09 22:21:49 +0100 |
commit | b5b2dbe3f3caaa2174932a85e54503654695050d (patch) | |
tree | 903641cf32292c0e7f9242b61a594fd7351f9ea9 /scripts | |
parent | 810f44fbd0fb3016c6c567a91a9656a2f7b44fc5 (diff) |
remove underscore from suffix
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/update-rcconf | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/update-rcconf b/scripts/update-rcconf index fc0518ec8..4e32b3040 100755 --- a/scripts/update-rcconf +++ b/scripts/update-rcconf @@ -7,7 +7,7 @@ topdir=$(readlink -nf $(dirname $0)/.. 2>/dev/null || (cd $(dirname $0)/..; pwd suffix=${ADK_TARGET_SYSTEM} if [ ! -z ${ADK_TARGET_ENDIAN_SUFFIX} ];then - suffix=${suffix}_${ADK_TARGET_ENDIAN_SUFFIX} + suffix=${suffix}${ADK_TARGET_ENDIAN_SUFFIX} fi if [ ! -z ${ADK_TARGET_LIBC} ];then suffix=${suffix}_${ADK_TARGET_LIBC} |