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
1ddf03da
Commit
1ddf03da
authored
Oct 19, 2006
by
kent@mysql.com/c-544072d5.010-2112-6f72651.cust.bredbandsbolaget.se
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Makefile.am:
Quote variable in "for"-loop head, in case it can be empty.
parent
33a0e82f
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
libmysqld/Makefile.am
libmysqld/Makefile.am
+3
-3
No files found.
libmysqld/Makefile.am
View file @
1ddf03da
...
...
@@ -158,11 +158,11 @@ endif
# This is called from the toplevel makefile
link_sources
:
set
-x
;
\
for
f
in
$(sqlsources)
;
do
\
for
f
in
"
$(sqlsources)
"
;
do
\
rm
-f
$$
f
;
\
@LN_CP_F@
$(top_srcdir)
/sql/
$$
f
$$
f
;
\
done
;
\
for
f
in
$(libmysqlsources)
;
do
\
for
f
in
"
$(libmysqlsources)
"
;
do
\
rm
-f
$$
f
;
\
@LN_CP_F@
$(top_srcdir)
/libmysql/
$$
f
$$
f
;
\
done
;
\
...
...
@@ -176,7 +176,7 @@ link_sources:
if
test
-n
"
$(storagesources)
"
;
\
then
\
rm
-f
$(storagesources)
;
\
for
f
in
$(storagesourceslinks)
;
do
\
for
f
in
"
$(storagesourceslinks)
"
;
do
\
@LN_CP_F@
$(top_srcdir)
/
$$
f
.
;
\
done
;
\
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