[fedfs-utils] [PATCH 1/3] autoconf: Eliminate autogen.sh warning

Chuck Lever chuck.lever at oracle.com
Sat Jan 18 09:26:39 PST 2014


Eliminate this warning from the autogen.sh script:

    aclocal: warning: couldn't open directory 'm4': No such file or
          directory

The "m4/" directory is created by libtoolize, so run it before
running aclocal.

Signed-off-by: Chuck Lever <chuck.lever at oracle.com>
---
 autogen.sh |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/autogen.sh b/autogen.sh
index 691c419..25151c4 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -57,8 +57,8 @@ if test x"${1}" = x"clean"; then
   exit
 fi
 
-aclocal
 libtoolize --force --copy --install
+aclocal
 autoheader
 automake --add-missing --copy --gnu
 autoconf




More information about the fedfs-utils-devel mailing list