Commit c475d9e3 authored by unknown's avatar unknown

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.
parent 3720111c
......@@ -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; \
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment