diff options
author | unknown <kent@mysql.com> | 2006-06-17 15:37:23 +0200 |
---|---|---|
committer | unknown <kent@mysql.com> | 2006-06-17 15:37:23 +0200 |
commit | 4d366600b87451881d64b027e6efe849adf29c42 (patch) | |
tree | 9543208ef1bd7649ef000e69622e88cab68b1d9a /ndb/Makefile.am | |
parent | d1e21c2c204c3a5b9106b2041862aa02119b40d1 (diff) | |
download | mariadb-git-4d366600b87451881d64b027e6efe849adf29c42.tar.gz |
Makefile.am:
Avoid error message trying 'windoze-dsp' in obsolete directory
compile-dist:
Avoid error message for target 'distclean' and no Makefile
BUILD/compile-dist:
Avoid error message for target 'distclean' and no Makefile
ndb/Makefile.am:
Avoid error message trying 'windoze-dsp' in obsolete directory
Diffstat (limited to 'ndb/Makefile.am')
-rw-r--r-- | ndb/Makefile.am | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ndb/Makefile.am b/ndb/Makefile.am index 32c821383e6..7162253f24b 100644 --- a/ndb/Makefile.am +++ b/ndb/Makefile.am @@ -19,7 +19,8 @@ dist-hook: done windoze: - for i in `find . -name 'Makefile.am'`; do make -C `dirname $$i` windoze-dsp; done + for i in `find . -name 'old_dirs' -prune -o -name 'Makefile.am' -print`; \ + do make -C `dirname $$i` windoze-dsp; done windoze-dsp: |