From: san Date: Wed, 17 Dec 2008 08:00:42 +0000 (+0000) Subject: Creating Plugins sub-dir in the build directory X-Git-Tag: V2008b X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=f42ab67e4e18b461b01a5f939c2fed0849733762;p=modules%2Fparavis.git Creating Plugins sub-dir in the build directory --- diff --git a/configure.ac b/configure.ac index d4981bdd..7e5a1b5c 100644 --- a/configure.ac +++ b/configure.ac @@ -303,7 +303,10 @@ if test "$HAS_CMAKE" = "yes"; then echo curdir=`pwd` - cd ./src/Plugins + if ! test -d ${ROOT_BUILDDIR}/src/Plugins; then + mkdir -p ${ROOT_BUILDDIR}/src/Plugins + fi + cd ${ROOT_BUILDDIR}/src/Plugins cmake -D ParaView_DIR=${PVINSTALLHOME} -D CMAKE_BUILD_TYPE=Debug -D CMAKE_INSTALL_PREFIX=${PARAVIS_ROOT_DIR}/lib/salome ${ROOT_SRCDIR}/src/Plugins cd $curdir fi