I found the problem some of you are having with make install... I wrote the datadir install hook as:
$(MKDIR_P) $(DESTDIR)$(localstatedir) Problem is - MKDIR_P is only set in automake >=1.10. So I have changed this to the following in my tree: $(mkinstalldirs) $(DESTDIR)$(localstatedir) To allow those of you with old, out of date automakes to still run properly. (mmm... upgrade systems... get modern software...) <rant> Seriously though - can we not just say that darnit, you need automake 1.10? We're requiring other modern stuff... and automake 1.10 was released on 15-Oct-2006... </rant> Fix is committed in ~mordred/drizzle/codestyle, in case anybody wants to double check for me that this fixes their problems... Monty _______________________________________________ Mailing list: https://launchpad.net/~drizzle-discuss Post to : [email protected] Unsubscribe : https://launchpad.net/~drizzle-discuss More help : https://help.launchpad.net/ListHelp

