Ensure m4/ directory exists, while automatically-added files are not included in commits.

This commit is contained in:
Michael Jumper 2012-08-11 13:22:27 -07:00
parent f22469ef31
commit cf6c232054
2 changed files with 14 additions and 1 deletions

3
libguac/.gitignore vendored
View File

@ -30,7 +30,8 @@ Makefile
Makefile.in
aclocal.m4
autom4te.cache/
m4/
m4/*
!README
config.guess
config.log
config.status

12
libguac/m4/README Normal file
View File

@ -0,0 +1,12 @@
This file exists such that the m4/ directory will be created when cloning the
git repository.
The m4/ directory is not directly used by this project, but libtoolize
populates this directory with files, recommending that the directory be
included in the macro search path for aclocal.
Because autoreconf runs aclocal before libtoolize, this directory will not
exist when autoreconf is run, triggering an error from aclocal.
Creating this directory (and keeping this file in it as a placeholder)
prevents this error.