fix lib/configure.py invocation for builddir != srcdir

(create the lib directorty if it does not exist before running the script)


git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@13417 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Georg Baum 2006-03-18 16:14:31 +00:00
parent 3d0c878966
commit 73462989ab

View File

@ -474,7 +474,7 @@ AC_CONFIG_FILES([Makefile m4/Makefile \
src/frontends/qt4/ui/Makefile \ src/frontends/qt4/ui/Makefile \
]) ])
echo "Running $LYX_ABS_TOP_SRCDIR/lib/configure.py --with-version-suffix=\"$version_suffix\"" echo "Running $LYX_ABS_TOP_SRCDIR/lib/configure.py --with-version-suffix=\"$version_suffix\""
(cd lib && python $LYX_ABS_TOP_SRCDIR/lib/configure.py --with-version-suffix="$version_suffix") (test -d lib || mkdir lib; cd lib && python $LYX_ABS_TOP_SRCDIR/lib/configure.py --with-version-suffix="$version_suffix")
AC_OUTPUT AC_OUTPUT
# show version information # show version information