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 ...@@ -158,11 +158,11 @@ endif
# This is called from the toplevel makefile # This is called from the toplevel makefile
link_sources: link_sources:
set -x; \ set -x; \
for f in $(sqlsources); do \ for f in "$(sqlsources)"; do \
rm -f $$f; \ rm -f $$f; \
@LN_CP_F@ $(top_srcdir)/sql/$$f $$f; \ @LN_CP_F@ $(top_srcdir)/sql/$$f $$f; \
done; \ done; \
for f in $(libmysqlsources); do \ for f in "$(libmysqlsources)"; do \
rm -f $$f; \ rm -f $$f; \
@LN_CP_F@ $(top_srcdir)/libmysql/$$f $$f; \ @LN_CP_F@ $(top_srcdir)/libmysql/$$f $$f; \
done; \ done; \
...@@ -176,7 +176,7 @@ link_sources: ...@@ -176,7 +176,7 @@ link_sources:
if test -n "$(storagesources)" ; \ if test -n "$(storagesources)" ; \
then \ then \
rm -f $(storagesources); \ rm -f $(storagesources); \
for f in $(storagesourceslinks); do \ for f in "$(storagesourceslinks)"; do \
@LN_CP_F@ $(top_srcdir)/$$f . ; \ @LN_CP_F@ $(top_srcdir)/$$f . ; \
done; \ done; \
fi; \ 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