Remove redundant and incorrect TOPDIR definitions
authorSeungSeop Park <sns.park@samsung.com>
Wed, 17 Jun 2015 23:57:48 +0000 (08:57 +0900)
committerYoungsoo Choi <kenshin.choi@samsung.com>
Tue, 10 Jul 2018 06:57:09 +0000 (06:57 +0000)
After directory structure refactoring, TOPDIR defintion became wrong
in some build scripts. It caused no problem until now because correct
TOPDIR exported by common.sh overrides the wrong one anyway.
Patch just removes such redundant and incorrect TOPDIR definitions.
Reviewed by: Antonio Gomes, Hyungsun Ryu, arno renevier

Change-Id: I0c0c097e1319e36f82fc36f118dc4bd26e9c0838
Signed-off-by: SeungSeop Park <sns.park@samsung.com>
tizen_src/build/build_desktop.sh
tizen_src/build/ccache_env.sh
tizen_src/build/cross_build_mobile.sh
tizen_src/build/cross_build_tv.sh

index 8cd7d21..2c0fbc4 100755 (executable)
@@ -1,7 +1,6 @@
 #!/bin/bash
 
 SCRIPTDIR=$( cd $(dirname $0) ; pwd -P )
-TOPDIR=$( cd ${SCRIPTDIR}/../.. ; pwd -P )
 
 source ${SCRIPTDIR}/common.sh
 trap 'error_report $0 $LINENO' ERR SIGINT SIGTERM SIGQUIT
index 64e61c3..0d691f1 100644 (file)
@@ -1,6 +1,5 @@
 
 SCRIPTDIR=$(cd $(dirname ${BASH_SOURCE[0]}); pwd -P)
-TOPDIR=$(cd ${SCRIPTDIR}/.. ; pwd -P)
 source ${SCRIPTDIR}/common.sh
 
 function usage() {
index b1bf06c..6e1a448 100755 (executable)
@@ -1,7 +1,6 @@
 #!/bin/bash
 
 SCRIPTDIR=$( cd $(dirname $0) ; pwd -P )
-TOPDIR=$( cd ${SCRIPTDIR}/.. ; pwd -P )
 
 source ${SCRIPTDIR}/common.sh
 trap 'postBuild ${SYSROOTDIR};\
index c646780..fdffb91 100755 (executable)
@@ -1,7 +1,6 @@
 #!/bin/bash
 
 SCRIPTDIR=$( cd $(dirname $0) ; pwd -P )
-TOPDIR=$( cd ${SCRIPTDIR}/.. ; pwd -P )
 
 source ${SCRIPTDIR}/common.sh
 trap 'postBuild ${SYSROOTDIR};\