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
c45f86a2
Commit
c45f86a2
authored
Jul 05, 2005
by
jimw@mysql.com
Browse files
Options
Browse Files
Download
Plain Diff
Merge mysql.com:/home/jimw/my/mysql-4.1-10986
into mysql.com:/home/jimw/my/mysql-4.1-clean
parents
9f654b80
13773acc
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
5 deletions
+13
-5
scripts/mysql_config.sh
scripts/mysql_config.sh
+13
-5
No files found.
scripts/mysql_config.sh
View file @
c45f86a2
...
...
@@ -60,11 +60,19 @@ fix_path ()
get_full_path
()
{
case
$1
in
/
*
)
echo
"
$1
"
;;
./
*
)
tmp
=
`
pwd
`
/
$1
;
echo
$tmp
|
sed
-e
's;/\./;/;'
;;
*
)
which
$1
;;
esac
file
=
$1
# if the file is a symlink, try to resolve it
if
[
-h
$file
]
;
then
file
=
`
ls
-l
$file
|
awk
'{ print $NF }'
`
fi
case
$file
in
/
*
)
echo
"
$file
"
;;
*
/
*
)
tmp
=
`
pwd
`
/
$file
;
echo
$tmp
|
sed
-e
's;/\./;/;'
;;
*
)
which
$file
;;
esac
}
me
=
`
get_full_path
$0
`
...
...
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