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 | f9abd1ab314d3f36ad6d2fe708e6a0ba6a7cb058 (patch) | |
tree | a50a9cdbc3f753f36f56c2cd0f08b6f50f26799a /client | |
parent | 1607f4aa215833c4844eedcb9b91a01885950f88 (diff) | |
download | mariadb-git-f9abd1ab314d3f36ad6d2fe708e6a0ba6a7cb058.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; |