mirror of
https://github.com/MariaDB/server.git
synced 2026-05-07 23:54:31 +02:00
Add some stuff to source package needed for CMake Windows packaging.
This commit is contained in:
parent
2b1f521286
commit
ce4463a139
2 changed files with 15 additions and 0 deletions
|
|
@ -62,5 +62,12 @@ INSTALL-BINARY: mysql.info $(GT)
|
||||||
../support-files/MacOSX/ReadMe.txt: mysql.info $(GT)
|
../support-files/MacOSX/ReadMe.txt: mysql.info $(GT)
|
||||||
perl -w $(GT) mysql.info "mac-os-x-installation" "netware-installation" > $@
|
perl -w $(GT) mysql.info "mac-os-x-installation" "netware-installation" > $@
|
||||||
|
|
||||||
|
# Include the Windows manual.chm in source .tar.gz only if available.
|
||||||
|
# It is not in BitKeeper, but is downloaded from intranet by Bootstrap.
|
||||||
|
dist-hook:
|
||||||
|
if [ -e $(srcdir)/manual.chm ] ; then \
|
||||||
|
cp $(srcdir)/manual.chm $(distdir); \
|
||||||
|
fi
|
||||||
|
|
||||||
# Don't update the files from bitkeeper
|
# Don't update the files from bitkeeper
|
||||||
%::SCCS/s.%
|
%::SCCS/s.%
|
||||||
|
|
|
||||||
|
|
@ -95,8 +95,16 @@ bin-dist: all
|
||||||
$(top_builddir)/scripts/make_binary_distribution @MAKE_BINARY_DISTRIBUTION_OPTIONS@
|
$(top_builddir)/scripts/make_binary_distribution @MAKE_BINARY_DISTRIBUTION_OPTIONS@
|
||||||
|
|
||||||
# Remove BK's "SCCS" subdirectories from source distribution
|
# Remove BK's "SCCS" subdirectories from source distribution
|
||||||
|
# Create initial database files for Windows installations.
|
||||||
dist-hook:
|
dist-hook:
|
||||||
rm -rf `find $(distdir) -type d -name SCCS -print`
|
rm -rf `find $(distdir) -type d -name SCCS -print`
|
||||||
|
if echo "$(distdir)" | grep -q '^/' ; then \
|
||||||
|
scripts/mysql_install_db --no-defaults --windows \
|
||||||
|
--datadir="$(distdir)/win/data"; \
|
||||||
|
else \
|
||||||
|
scripts/mysql_install_db --no-defaults --windows \
|
||||||
|
--datadir="$$(pwd)/$(distdir)/win/data"; \
|
||||||
|
fi
|
||||||
|
|
||||||
tags:
|
tags:
|
||||||
support-files/build-tags
|
support-files/build-tags
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue