Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
mariadb
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
mariadb
Commits
ce4463a1
Commit
ce4463a1
authored
Mar 30, 2006
by
knielsen@mysql.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add some stuff to source package needed for CMake Windows packaging.
parent
2b1f5212
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
15 additions
and
0 deletions
+15
-0
Docs/Makefile.am
Docs/Makefile.am
+7
-0
Makefile.am
Makefile.am
+8
-0
No files found.
Docs/Makefile.am
View file @
ce4463a1
...
...
@@ -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.%
Makefile.am
View file @
ce4463a1
...
...
@@ -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
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment