diff options
author | unknown <joerg@trift2.> | 2007-05-16 21:00:35 +0200 |
---|---|---|
committer | unknown <joerg@trift2.> | 2007-05-16 21:00:35 +0200 |
commit | 80cb3cf44a4cdd70ff2368329d1a84d86d297cd1 (patch) | |
tree | 8e2c0fb56de4b98685ac4fe61b601abba1a66ad2 /scripts/make_win_bin_dist | |
parent | 1dff2e8303b4b8c572219d61bc16fa00a112f17a (diff) | |
download | mariadb-git-80cb3cf44a4cdd70ff2368329d1a84d86d297cd1.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.
scripts/make_win_bin_dist:
After-merge fix:
Ensure the balanced use of 'x' guards in string comparisons also in the new 5.1 lines.
Diffstat (limited to 'scripts/make_win_bin_dist')
-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 |