summaryrefslogtreecommitdiff
path: root/gcc/test_driver
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2009-02-24 17:06:26 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2009-02-24 17:06:26 +0000
commit2c4c0d0b9a2931f1d03cd6252abb69ce1fe98f13 (patch)
tree718a25102a1573de594898ed5858f8712b477cdc /gcc/test_driver
parent7eebe347c26a44e02fdc1127cc9da39abcb4e5a7 (diff)
2009-02-24 Joel Sherrill <joel.sherrill@oarcorp.com>
* gcc/rundeja, gcc/test_driver: Use INSTALL and BSP_INSTALL more consistently.
Diffstat (limited to 'gcc/test_driver')
-rwxr-xr-xgcc/test_driver6
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/test_driver b/gcc/test_driver
index a94bd39..88108fc 100755
--- a/gcc/test_driver
+++ b/gcc/test_driver
@@ -61,8 +61,8 @@ update_gcc()
# HELPER - Remove all the installed previous builds
clean_up()
{
- rm -rf install/* &
- rm -rf bsp-install/* &
+ rm -rf ${INSTALL}/* &
+ rm -rf ${BSP_INSTALL}/* &
wait
}
@@ -72,7 +72,7 @@ install_auto()
do
cd ${auto}
make distclean
- ./configure --prefix=${BASEDIR}/install
+ ./configure --prefix=${INSTALL}
make all install
done
}