From 5ec7f6970d11637106d05f6406bea79d4b30f3e2 Mon Sep 17 00:00:00 2001 From: Michael Jumper Date: Sat, 11 Aug 2012 13:24:06 -0700 Subject: [PATCH] Ensure m4/ directory exists, while automatically-added files are not included in commits. --- protocols/vnc/.gitignore | 3 ++- protocols/vnc/m4/README | 12 ++++++++++++ 2 files changed, 14 insertions(+), 1 deletion(-) create mode 100644 protocols/vnc/m4/README diff --git a/protocols/vnc/.gitignore b/protocols/vnc/.gitignore index e37f9166..3f725332 100644 --- a/protocols/vnc/.gitignore +++ b/protocols/vnc/.gitignore @@ -21,7 +21,8 @@ Makefile Makefile.in aclocal.m4 autom4te.cache/ -m4/ +m4/* +!README config.guess config.log config.status diff --git a/protocols/vnc/m4/README b/protocols/vnc/m4/README new file mode 100644 index 00000000..c9c9cbc4 --- /dev/null +++ b/protocols/vnc/m4/README @@ -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.