Commit c475d9e3 authored by unknown's avatar unknown
Browse files

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
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -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; \