Commit 03b14c9e authored by unknown's avatar unknown
Browse files

Add some stuff to source package needed for CMake Windows packaging.


Docs/Makefile.am:
  Include Windows manual in source package (if available), needed for CMake
  packaging.
Makefile.am:
  Include initial Windows database files in source package, needed for
  CMake packaging
parent 4d30f784
Loading
Loading
Loading
Loading
+7 −0
Original line number Diff line number Diff line
@@ -62,5 +62,12 @@ INSTALL-BINARY: mysql.info $(GT)
../support-files/MacOSX/ReadMe.txt:	mysql.info $(GT)
	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
%::SCCS/s.%
+8 −0
Original line number Diff line number Diff line
@@ -95,8 +95,16 @@ bin-dist: all
	$(top_builddir)/scripts/make_binary_distribution @MAKE_BINARY_DISTRIBUTION_OPTIONS@

# Remove BK's "SCCS" subdirectories from source distribution
# Create initial database files for Windows installations.
dist-hook:
	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:
	support-files/build-tags