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
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexedi
MariaDB
Commits
639a1069
Commit
639a1069
authored
Mar 04, 2001
by
tim@work.mysql.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add --just-configure (-c) option to BUILD scripts.
parent
38f16c1c
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
22 additions
and
9 deletions
+22
-9
BUILD/FINISH.sh
BUILD/FINISH.sh
+10
-5
BUILD/SETUP.sh
BUILD/SETUP.sh
+11
-4
BitKeeper/etc/logging_ok
BitKeeper/etc/logging_ok
+1
-0
No files found.
BUILD/FINISH.sh
View file @
639a1069
...
...
@@ -17,18 +17,23 @@ cd innobase
aclocal; autoheader; aclocal; automake; autoconf
cd ..
CFLAGS=
\"
$cflags
\"
CXX=gcc CXXFLAGS=
\"
$cxxflags
\"
$configure
CFLAGS=
\"
$cflags
\"
CXX=gcc CXXFLAGS=
\"
$cxxflags
\"
$configure
"
if
[
-z
"
$just_configure
"
]
then
commands
=
"
$commands
$make
$AM_MAKEFLAGS
"
if
[
"x
$strip
"
=
"xyes"
]
then
if
[
"x
$strip
"
=
"xyes"
]
then
commands
=
"
$commands
mkdir -p tmp
nm --numeric-sort sql/mysqld > tmp/mysqld.sym
objdump -d sql/mysqld > tmp/mysqld.S
strip sql/mysqld"
fi
fi
if
test
-z
"
$nonono
"
...
...
BUILD/SETUP.sh
View file @
639a1069
...
...
@@ -5,18 +5,25 @@ then
fi
nonono
=
case
"
$1
"
in
-n
|
--just-print
)
nonono
=
1
;
shift
;;
-h
|
--help
)
cat
<<
EOF
; exit 0 ;;
just_configure
=
while
test
$#
-gt
0
do
case
"
$1
"
in
-c
|
--just-configure
)
just_configure
=
1
;
shift
;;
-n
|
--just-print
)
nonono
=
1
;
shift
;;
-h
|
--help
)
cat
<<
EOF
; exit 0 ;;
Usage:
$0
[-h|-n] [configure-options]
-h, --help Show this help message.
-n, --just-print Don't actually run any commands; just print them.
-c, --just-configure Stop after running configure.
Any other options will be passed directly to configure.
Note: this script is intended for internal use by MySQL developers.
EOF
esac
*
)
break
;;
esac
done
set
-e
...
...
BitKeeper/etc/logging_ok
View file @
639a1069
...
...
@@ -5,3 +5,4 @@ sasha@mysql.sashanet.com
serg@serg.mysql.com
monty@donna.mysql.fi
tim@threads.polyesthetic.msg
tim@work.mysql.com
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