[openrtm-commit:01438] r2564 - trunk/OpenRTM-aist/win32/OpenRTM-aist
openrtm @ openrtm.org
openrtm @ openrtm.org
2014年 4月 19日 (土) 14:34:20 JST
Author: n-ando
Date: 2014-04-19 14:34:20 +0900 (Sat, 19 Apr 2014)
New Revision: 2564
Modified:
trunk/OpenRTM-aist/win32/OpenRTM-aist/make_package.sh
Log:
[compat,build,win32,->RELENG_1_1] test env variables removed in make_package.sh
Modified: trunk/OpenRTM-aist/win32/OpenRTM-aist/make_package.sh
===================================================================
--- trunk/OpenRTM-aist/win32/OpenRTM-aist/make_package.sh 2014-04-18 17:54:03 UTC (rev 2563)
+++ trunk/OpenRTM-aist/win32/OpenRTM-aist/make_package.sh 2014-04-19 05:34:20 UTC (rev 2564)
@@ -9,10 +9,18 @@
#
# The following environment variables should be set.
# ex.
-export OPENRTM_DIR=OpenRTM-aist
-export PYTHON_DIR=/cygdrive/c/Python27
-export VC_VERSION=10
-export ARCH=x86
+if test "x$OPENRTM_DIR" = "x" ; then
+ export OPENRTM_DIR=OpenRTM-aist
+fi
+if test "x$PYTHON_DIR" = "x" ; then
+ export PYTHON_DIR=/cygdrive/c/Python27
+fi
+if test "x$VC_VERSION" = "x" ; then
+ export VC_VERSION=10
+fi
+if test "x$ARCH" = "x" ; then
+ export ARCH=x86
+fi
export PATH=${PATH}:/bin:/usr/bin
#
#==============================
More information about the openrtm-commit
mailing list