From 1f45d59becbe17399a9c456741231728c8fa3ec1 Mon Sep 17 00:00:00 2001 From: Waldemar Brodkorb Date: Thu, 29 May 2014 21:53:48 +0200 Subject: rework directory names Sorry, need to change this again. Toolchain and target directories can not be usefully shared between systems with the same cpu arch. There are to many optimizations for gcc supplied libraries involved. Simplify even for qemu targets. --- scripts/create-sys | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) (limited to 'scripts/create-sys') diff --git a/scripts/create-sys b/scripts/create-sys index e60428a45..3f2dc2c81 100755 --- a/scripts/create-sys +++ b/scripts/create-sys @@ -19,11 +19,7 @@ for i in $systems;do systemu=$(echo $system|tr '[:upper:]' '[:lower:]') system=$(echo $system|tr '[:upper:]_' '[:lower:]-') system=$(echo $system|sed 's#x86-64#x86_64#') - if [ "${system%-*}" = "toolchain" -o "${system%-*}" = "qemu" -o "${system%-*}" = "vbox" -o "${system%-*}" = "aranym" ];then - printf "\tdefault \"${system%-*}\" if ADK_$systemu\n" >> $topdir/target/config/Config.in.system.default - else - printf "\tdefault \"${system}\" if ADK_$systemu\n" >> $topdir/target/config/Config.in.system.default - fi + printf "\tdefault \"${system}\" if ADK_$systemu\n" >> $topdir/target/config/Config.in.system.default done for i in $(ls $topdir/target/);do -- cgit v1.2.3