mirror of
https://github.com/MariaDB/server.git
synced 2026-05-14 19:07:15 +02:00
Makefile.am:
Quote variable in "for"-loop head, in case it can be empty. libmysqld/Makefile.am: Quote variable in "for"-loop head, in case it can be empty.
This commit is contained in:
parent
3720111cec
commit
c475d9e3d3
1 changed files with 3 additions and 3 deletions
|
|
@ -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; \
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue