diff options
author | unknown <monty@mysql.com> | 2004-06-26 10:57:00 +0300 |
---|---|---|
committer | unknown <monty@mysql.com> | 2004-06-26 10:57:00 +0300 |
commit | 02b3d6f1cb7d00476eeefcfb4e6b3fe6a9e1defd (patch) | |
tree | 8142c45862919677b233adf5ef37a25dcdba04e9 /scripts/make_win_src_distribution.sh | |
parent | 41ffbaf1af6a895deed5b2d98a26e56ce509f474 (diff) | |
download | mariadb-git-02b3d6f1cb7d00476eeefcfb4e6b3fe6a9e1defd.tar.gz |
Cleanup for creating windows source distribution
BitKeeper/etc/ignore:
added sql/mysql_tzinfo_to_sql.cc
scripts/make_win_src_distribution.sh:
Don't copy InstallShield files if we are in a normal bk tree
scripts/mysql_create_system_tables.sh:
Remove duplicate entry
Diffstat (limited to 'scripts/make_win_src_distribution.sh')
-rw-r--r-- | scripts/make_win_src_distribution.sh | 17 |
1 files changed, 10 insertions, 7 deletions
diff --git a/scripts/make_win_src_distribution.sh b/scripts/make_win_src_distribution.sh index 1c00ac751d7..eaaf219afc4 100644 --- a/scripts/make_win_src_distribution.sh +++ b/scripts/make_win_src_distribution.sh @@ -161,13 +161,16 @@ vreplace() done } -for d in 4.1.XX-gpl 4.1.XX-pro 4.1.XX-classic -do - cd $BASE/InstallShield/$d/String\ Tables/0009-English - vreplace value.shl - cd ../../Setup\ Files/Compressed\ Files/Language\ Independent/OS\ Independent - vreplace infolist.txt -done +if test -d $BASE/InstallShield +then + for d in 4.1.XX-gpl 4.1.XX-pro 4.1.XX-classic + do + cd $BASE/InstallShield/$d/String\ Tables/0009-English + vreplace value.shl + cd ../../Setup\ Files/Compressed\ Files/Language\ Independent/OS\ Independent + vreplace infolist.txt + done +fi # # Move all error message files to root directory |