diff options
author | don bright <hugh.m.bright@gmail.com> | 2012-08-04 17:54:12 (GMT) |
---|---|---|
committer | don bright <hugh.m.bright@gmail.com> | 2012-08-04 17:54:12 (GMT) |
commit | 1d47a6ebb62ff601f0de8c7e0852644fe48cc834 (patch) | |
tree | d88a5627e3717e81cf492daeb5a0bb82e7de4c68 /scripts/setenv-mingw-xbuild.sh | |
parent | 72462e4d0f49740e57be374cfc1fdeeb668ae913 (diff) |
fix symlink bug in setenv-mingw script. enhance linux docs
Diffstat (limited to 'scripts/setenv-mingw-xbuild.sh')
-rw-r--r-- | scripts/setenv-mingw-xbuild.sh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/scripts/setenv-mingw-xbuild.sh b/scripts/setenv-mingw-xbuild.sh index 271e5be..09a1900 100644 --- a/scripts/setenv-mingw-xbuild.sh +++ b/scripts/setenv-mingw-xbuild.sh @@ -27,7 +27,8 @@ echo PATH modified with $MXEDIR/usr/bin if [ ! -e $DEPLOYDIR ]; then mkdir -p $DEPLOYDIR fi -if [ ! -e $DEPLOYDIR/mingw-cross-env ]; then + +if [ ! -h $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 |