diff options
author | unknown <kent@mysql.com/kent-amd64.(none)> | 2007-08-06 08:28:16 +0200 |
---|---|---|
committer | unknown <kent@mysql.com/kent-amd64.(none)> | 2007-08-06 08:28:16 +0200 |
commit | dd75eb67ed1d8c6ecbeb9a5101787f0637a72db3 (patch) | |
tree | ca9c7e35d2718e1f1fcdc3c8464e3fcfafb22768 /scripts | |
parent | 57e225bbc4906a4540dcbdcf79e1acdefd70ebea (diff) | |
download | mariadb-git-dd75eb67ed1d8c6ecbeb9a5101787f0637a72db3.tar.gz |
make_win_bin_dist:
Copy embedded .pdb and static debug lib
scripts/make_win_bin_dist:
Copy embedded .pdb and static debug lib
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/make_win_bin_dist | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/scripts/make_win_bin_dist b/scripts/make_win_bin_dist index 14ea77e3e0e..6b6342b268f 100755 --- a/scripts/make_win_bin_dist +++ b/scripts/make_win_bin_dist @@ -219,16 +219,22 @@ copy_embedded() $DESTDIR/include cp libmysqld/libmysqld.def $DESTDIR/include/ cp libmysqld/$TARGET/mysqlserver.lib $DESTDIR/Embedded/static/release/ + cp libmysqld/$TARGET/mysqlserver.pdb $DESTDIR/Embedded/static/release/ cp libmysqld/$TARGET/libmysqld.dll $DESTDIR/Embedded/DLL/release/ cp libmysqld/$TARGET/libmysqld.exp $DESTDIR/Embedded/DLL/release/ cp libmysqld/$TARGET/libmysqld.lib $DESTDIR/Embedded/DLL/release/ + cp libmysqld/$TARGET/libmysqld.pdb $DESTDIR/Embedded/DLL/release/ if [ x"$PACK_DEBUG" = x"" -a -f "libmysqld/debug/libmysqld.lib" -o \ x"$PACK_DEBUG" = x"yes" ] ; then - mkdir -p $DESTDIR/Embedded/DLL/debug + mkdir -p $DESTDIR/Embedded/DLL/debug \ + $DESTDIR/Embedded/static/debug + cp libmysqld/debug/mysqlserver.lib $DESTDIR/Embedded/DLL/debug/ + cp libmysqld/debug/mysqlserver.pdb $DESTDIR/Embedded/DLL/debug/ cp libmysqld/debug/libmysqld.dll $DESTDIR/Embedded/DLL/debug/ cp libmysqld/debug/libmysqld.exp $DESTDIR/Embedded/DLL/debug/ cp libmysqld/debug/libmysqld.lib $DESTDIR/Embedded/DLL/debug/ + cp libmysqld/debug/libmysqld.pdb $DESTDIR/Embedded/DLL/debug/ fi } |