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
247a84d4
Commit
247a84d4
authored
Nov 29, 2007
by
jonathan@chorlton.adsl.perkin.org.uk
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Shell portability fix.
parent
cb33d0dc
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
scripts/mysql_install_db.sh
scripts/mysql_install_db.sh
+3
-3
No files found.
scripts/mysql_install_db.sh
View file @
247a84d4
...
...
@@ -181,14 +181,14 @@ parse_arguments PICK-ARGS-FROM-ARGV "$@"
if
test
-n
"
$basedir
"
then
print_defaults
=
`
find_in_basedir my_print_defaults bin extra
`
if
!
test
-x
"
$print_defaults
"
if
test
!
-x
"
$print_defaults
"
then
missing_in_basedir my_print_defaults
exit
1
fi
else
print_defaults
=
"@bindir@/my_print_defaults"
if
!
test
-x
"
$print_defaults
"
if
test
!
-x
"
$print_defaults
"
then
echo
"FATAL ERROR: Could not find
$print_defaults
"
echo
...
...
@@ -223,7 +223,7 @@ else
exit
1
fi
mysqld
=
`
find_in_basedir mysqld libexec sbin bin
`
if
!
test
-x
"
$mysqld
"
if
test
!
-x
"
$mysqld
"
then
missing_in_basedir mysqld
exit
1
...
...
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