Skip to content

Commit

Permalink
fixed compatibility with automake 1.9
Browse files Browse the repository at this point in the history
MKDIR_P which was used in install-data-hook is present only in
automake 1.10 and higher
  • Loading branch information
Aliaksey Kandratsenka committed Sep 29, 2009
1 parent 0ad4969 commit 9a33c0f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile.am
Expand Up @@ -145,7 +145,7 @@ dist-hook:
rm -f $(distdir)/*/*~ $(distdir)/t/lib/*~ $(distdir)/*~

install-data-hook:
$(MKDIR_P) $(CONFLATE_DB_PATH)
$(mkdir_p) $(CONFLATE_DB_PATH)

check_work_SOURCES = check_work.c $(moxi_debug_SOURCES)
check_work_CFLAGS = @CHECK_CFLAGS@ $(moxi_debug_CPPFLAGS) -DMAIN_CHECK
Expand Down

0 comments on commit 9a33c0f

Please sign in to comment.