diff options
author | joerg@trift2. <> | 2007-05-16 21:00:35 +0200 |
---|---|---|
committer | joerg@trift2. <> | 2007-05-16 21:00:35 +0200 |
commit | d84c8072048e5258a76e60e93568bb9bc4b41cff (patch) | |
tree | 8e2c0fb56de4b98685ac4fe61b601abba1a66ad2 /scripts | |
parent | b3f35b8be59f0102443c0bfebf2386bf9f7cd486 (diff) | |
download | mariadb-git-d84c8072048e5258a76e60e93568bb9bc4b41cff.tar.gz |
After-merge fix in "scripts/make_win_bin_dist":
Ensure the balanced use of 'x' guards in string comparisons also in the new 5.1 lines.
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/make_win_bin_dist | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/make_win_bin_dist b/scripts/make_win_bin_dist index 2e6236ac6a8..6593e2c6039 100755 --- a/scripts/make_win_bin_dist +++ b/scripts/make_win_bin_dist @@ -238,8 +238,8 @@ cp libmysql/mytest.c libmysql/myTest.vcproj libmysql/$TARGET/myTest.exe \ $DESTDIR/examples/libmysqltest/ cp libmysql/$TARGET/myTest.exe $DESTDIR/examples/libmysqltest/release/ -if [ x"$PACK_DEBUG" = "" -a -f "libmysql/debug/myTest.exe" -o \ - x"$PACK_DEBUG" = "yes" ] ; then +if [ x"$PACK_DEBUG" = x"" -a -f "libmysql/debug/myTest.exe" -o \ + x"$PACK_DEBUG" = x"yes" ] ; then mkdir -p $DESTDIR/examples/libmysqltest/debug cp libmysql/debug/myTest.exe $DESTDIR/examples/libmysqltest/debug/ fi |