diff options
author | 2007-10-20 00:44:48 +0000 | |
---|---|---|
committer | 2007-10-20 00:44:48 +0000 | |
commit | 1d9282d01bf0677c6803dd6e118f3cb7a9a088eb (patch) | |
tree | 10914e6ec36263bbcef8eaf06764daa6798972cd /vim | |
parent | 0a91633049a1fe24ccca46492183d1c789fa1bf1 (diff) | |
download | paludis-1d9282d01bf0677c6803dd6e118f3cb7a9a088eb.tar.gz paludis-1d9282d01bf0677c6803dd6e118f3cb7a9a088eb.tar.xz |
Use $(MAKE), not make
Diffstat (limited to 'vim')
-rw-r--r-- | vim/ftdetect/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vim/ftdetect/Makefile.am b/vim/ftdetect/Makefile.am index 23b5a27ec..861dbdb9f 100644 --- a/vim/ftdetect/Makefile.am +++ b/vim/ftdetect/Makefile.am @@ -23,5 +23,5 @@ distcheck-deps-local : $(DISTCHECK_DEPS) distcheck-deps : distcheck-deps-subdirs distcheck-deps-subdirs : - for s in $(SUBDIRS) . ; do if test x$$s = x. ; then make distcheck-deps-local || exit 1 ; \ + for s in $(SUBDIRS) . ; do if test x$$s = x. ; then $(MAKE) distcheck-deps-local || exit 1 ; \ else $(MAKE) -C $$s distcheck-deps || exit 1 ; fi ; done |