diff options
author | unknown <joerg@mysql.com> | 2006-05-09 00:33:07 +0200 |
---|---|---|
committer | unknown <joerg@mysql.com> | 2006-05-09 00:33:07 +0200 |
commit | 2f7afba8247b3f068a5f68a8d606d86ca05d9c0a (patch) | |
tree | ee76535267c8b4a1c6ed4acb20cffdb6b8de6e46 /libmysqld | |
parent | 9a0afe068185e743b7574d0bb7bf80da6597337e (diff) | |
download | mariadb-git-2f7afba8247b3f068a5f68a8d606d86ca05d9c0a.tar.gz |
libmysqld/Makefile.am : Silly typo: Lacking a trailing semicolon after shell "if".
libmysqld/Makefile.am:
Silly typo: Lacking a trailing semicolon after shell "if".
Diffstat (limited to 'libmysqld')
-rw-r--r-- | libmysqld/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libmysqld/Makefile.am b/libmysqld/Makefile.am index 2648db55401..89de5bc5a82 100644 --- a/libmysqld/Makefile.am +++ b/libmysqld/Makefile.am @@ -167,7 +167,7 @@ link_sources: rm -f $$f; \ @LN_CP_F@ $(top_srcdir)/libmysql/$$f $$f; \ done; \ - it test -n "$(sqlstoragesources)" \ + it test -n "$(sqlstoragesources)" ; \ then \ for f in "$(sqlstoragesources)"; do \ rm -f "$$f"; \ |