If WXWIDGETS is not set and if on cygwin then set it to a DOS style path. (This assumes that it is not a cygwin oxygen that is being run, if that's not the case then set WXWIDGETS before running regen.sh)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@70658 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
parent
6bed673eb3
commit
c0e5edf548
@ -20,7 +20,12 @@ me=$(basename $0)
|
||||
path=${0%%/$me} # path from which the script has been launched
|
||||
current=$(pwd)
|
||||
cd $path
|
||||
export WXWIDGETS=`cd ../.. && pwd`
|
||||
if [ "$WXWIDGETS" = "" ]; then
|
||||
export WXWIDGETS=`cd ../.. && pwd`
|
||||
if [ "$OSTYPE" = "cygwin" ]; then
|
||||
export WXWIDGETS=`cygpath -w $WXWIDGETS`
|
||||
fi
|
||||
fi
|
||||
|
||||
# prepare folders for the cp commands below
|
||||
mkdir -p out/html # we need to copy files in this folder below
|
||||
|
Loading…
Reference in New Issue
Block a user