diff options
author | don bright <hugh.m.bright@gmail.com> | 2012-08-03 11:30:28 (GMT) |
---|---|---|
committer | don bright <hugh.m.bright@gmail.com> | 2012-08-03 11:30:28 (GMT) |
commit | 7b9a838abe730f7ddd5eca8b8376dc6af10c9a49 (patch) | |
tree | 14e036e4361cd52e1165bf49c372bee969553c64 /scripts/setenv-mingw-xbuild.sh | |
parent | 08b07769859ef4905a72b54c58e2e7891d3ac0a5 (diff) |
update the 'release checklist' and integrate with mingw crossbuild
Diffstat (limited to 'scripts/setenv-mingw-xbuild.sh')
-rw-r--r-- | scripts/setenv-mingw-xbuild.sh | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/scripts/setenv-mingw-xbuild.sh b/scripts/setenv-mingw-xbuild.sh index 987f6e4..271e5be 100644 --- a/scripts/setenv-mingw-xbuild.sh +++ b/scripts/setenv-mingw-xbuild.sh @@ -24,3 +24,14 @@ echo MXEDIR: $MXEDIR echo DEPLOYDIR: $DEPLOYDIR echo PATH modified with $MXEDIR/usr/bin +if [ ! -e $DEPLOYDIR ]; then + mkdir -p $DEPLOYDIR +fi +if [ ! -e $DEPLOYDIR/mingw-cross-env ]; then + echo linking $MXEDIR/usr/i686-pc-mingw32/ to $DEPLOYDIR/mingw-cross-env + ln -s $MXEDIR/usr/i686-pc-mingw32/ $DEPLOYDIR/mingw-cross-env +else + echo $DEPLOYDIR/mingw-cross-env is already symlinked +fi + + |