diff options
author | Kent Boortz <kent.boortz@oracle.com> | 2011-05-03 16:02:31 +0200 |
---|---|---|
committer | Kent Boortz <kent.boortz@oracle.com> | 2011-05-03 16:02:31 +0200 |
commit | 4f666e8e8130fe5bac078d4c5715c21fd948aa5f (patch) | |
tree | a50a9cdbc3f753f36f56c2cd0f08b6f50f26799a /client | |
parent | bc7bf937c5849fc0b85f25a3263a91711f4fd25e (diff) | |
download | mariadb-git-4f666e8e8130fe5bac078d4c5715c21fd948aa5f.tar.gz |
Remove soft links in the build directory, not the source directory (Bug#43312)
Diffstat (limited to 'client')
-rw-r--r-- | client/Makefile.am | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/client/Makefile.am b/client/Makefile.am index ccd0d8aada0..b455a34a58b 100644 --- a/client/Makefile.am +++ b/client/Makefile.am @@ -116,10 +116,10 @@ link_sources: @LN_CP_F@ $(top_srcdir)/sql/$$f $$f; \ done; \ for f in $(strings_src) ; do \ - rm -f $(srcdir)/$$f; \ + rm -f $$f; \ @LN_CP_F@ $(top_srcdir)/strings/$$f $$f; \ done; \ - rm -f $(srcdir)/my_user.c; \ + rm -f my_user.c; \ @LN_CP_F@ $(top_srcdir)/sql-common/my_user.c my_user.c; echo timestamp > link_sources; |