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
87016b43
Commit
87016b43
authored
Oct 06, 2005
by
kent@mysql.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
make_binary_distribution.sh:
Reintroduced --machine Better sh compatibility, "for i ; do" is not portable
parent
dd241c4b
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
20 additions
and
11 deletions
+20
-11
scripts/make_binary_distribution.sh
scripts/make_binary_distribution.sh
+20
-11
No files found.
scripts/make_binary_distribution.sh
View file @
87016b43
...
...
@@ -17,10 +17,11 @@ MV="mv"
STRIP
=
1
DEBUG
=
0
SILENT
=
0
PLATFORM
=
"
$system
-
$machine
"
MACHINE
=
""
PLATFORM
=
""
TMP
=
/tmp
SUFFIX
=
""
NDBCLUSTER
=
NDBCLUSTER
=
""
for
arg
do
case
"
$arg
"
in
...
...
@@ -28,6 +29,7 @@ for arg do
--tmp
=
*
)
TMP
=
`
echo
"
$arg
"
|
sed
-e
"s;--tmp=;;"
`
;;
--suffix
=
*
)
SUFFIX
=
`
echo
"
$arg
"
|
sed
-e
"s;--suffix=;;"
`
;;
--no-strip
)
STRIP
=
0
;;
--machine
=
*
)
MACHINE
=
`
echo
"
$arg
"
|
sed
-e
"s;--machine=;;"
`
;;
--platform
=
*
)
PLATFORM
=
`
echo
"
$arg
"
|
sed
-e
"s;--platform=;;"
`
;;
--silent
)
SILENT
=
1
;;
--with-ndbcluster
)
NDBCLUSTER
=
1
;;
...
...
@@ -38,6 +40,16 @@ for arg do
esac
done
if
[
x
"
$MACHINE
"
!=
x
""
]
;
then
machine
=
$MACHINE
fi
if
[
x
"
$PLATFORM
"
!=
x
""
]
;
then
platform
=
"
$PLATFORM
"
else
platform
=
"
$system
-
$machine
"
fi
# FIXME This should really be integrated with automake and not duplicate the
# installation list.
...
...
@@ -78,7 +90,8 @@ copyfileto()
{
destdir
=
$1
shift
for
i
;
do
for
i
do
if
[
-f
$i
]
;
then
$CP
$i
$destdir
elif
[
-d
$i
]
;
then
...
...
@@ -293,11 +306,9 @@ BASE=$BASE2
# If we are compiling with gcc, copy libgcc.a to the distribution as libmygcc.a
#
if
[
x
"@GXX@"
=
x
"yes"
]
then
if
[
x
"@GXX@"
=
x
"yes"
]
;
then
gcclib
=
`
@CC@
--print-libgcc-file
`
if
[
$?
-ne
0
]
then
if
[
$?
-ne
0
]
;
then
print
"Warning: Couldn't find libgcc.a!"
else
$CP
$gcclib
$BASE
/lib/libmygcc.a
...
...
@@ -323,8 +334,7 @@ which_1 ()
do
for
file
in
$d
/
$cmd
do
if
[
-x
$file
-a
!
-d
$file
]
then
if
[
-x
$file
-a
!
-d
$file
]
;
then
echo
$file
exit
0
fi
...
...
@@ -341,8 +351,7 @@ if [ $BASE_SYSTEM != "netware" ] ; then
#
tar
=
`
which_1 gnutar gtar
`
if
[
"
$?
"
=
"1"
-o
x
"
$tar
"
=
x
""
]
then
if
[
"
$?
"
=
"1"
-o
x
"
$tar
"
=
x
""
]
;
then
tar
=
tar
fi
...
...
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