Salome HOME
Minor internal modifications and performance improvements
[modules/adao.git] / autogen.sh
index b0b2835fdb5886d46c4a1e7187f2fa09d149f9ed..5094f4c1fe0d68113f09c53f6c8cf8352a4a80fc 100755 (executable)
@@ -1,5 +1,5 @@
 #!/bin/sh
-# Copyright (C) 2010-2011 EDF R&D
+# Copyright (C) 2008-2021 EDF R&D
 #
 # This library is free software; you can redistribute it and/or
 # modify it under the terms of the GNU Lesser General Public
 rm -rf autom4te.cache
 rm -f aclocal.m4 adm_local/ltmain.sh
 
+########################################################################
+# Test if the KERNEL_ROOT_DIR is set correctly
+
+if test ! -d "${KERNEL_ROOT_DIR}"; then
+    echo "failed : KERNEL_ROOT_DIR variable is not correct !"
+    exit 1
+fi
+
 echo "Running aclocal..."    ;
-aclocal --force -I adm_local || exit 1
-echo "Running autoheader..." ; autoheader --force -I adm_local            || exit 1
+aclocal --force -I adm_local \
+                -I ${KERNEL_ROOT_DIR}/salome_adm/unix/config_files || exit 1
+echo "Running autoheader..." ; autoheader --force                  || exit 1
 echo "Running autoconf..."   ; autoconf --force                    || exit 1
 echo "Running libtoolize..." ; libtoolize --copy --force           || exit 1
 echo "Running automake..."   ; automake --add-missing --copy       || exit 1