Fixed some small errors in the install process.
This commit is contained in:
parent
44dd5972a7
commit
d424e7a7a0
3 changed files with 7 additions and 6 deletions
|
|
@ -224,7 +224,7 @@ ifneq ($(build_python),0)
|
|||
@INSTALL@ tools/src/finish_install.py tools/bin
|
||||
(PYTHONPATH=''; @PYTHON_CMD@ tools/bin/finish_install.py @prefix@ @PYTHON_CMD@)
|
||||
chmod +x @ct_bindir@/ctnew
|
||||
ifeq ($(build_pyhton),2)
|
||||
ifeq ($(build_python),2)
|
||||
chmod +x @ct_bindir@/mixmaster
|
||||
endif
|
||||
cp -f "@homedir@/setup_cantera" "@ct_bindir@"
|
||||
|
|
|
|||
10
configure.in
10
configure.in
|
|
@ -574,13 +574,13 @@ AC_SUBST(BLAS_LAPACK_DIR)
|
|||
# Define these variables, but turn them off in main version of code
|
||||
#
|
||||
build_with_f2c=0
|
||||
if test -n $BUILD_WITH_F2C ; then
|
||||
if test $BUILD_WITH_F2C = "y" -o $BUILD_WITH_F2C = "Y" ; then
|
||||
if test -n "$BUILD_WITH_F2C" ; then
|
||||
if test "$BUILD_WITH_F2C" = "y" -o "$BUILD_WITH_F2C" = "Y" ; then
|
||||
build_with_f2c=1
|
||||
elif test $BUILD_WITH_F2C = "n" -o $BUILD_WITH_F2C = "N" ; then
|
||||
elif test "$BUILD_WITH_F2C" = "n" -o "$BUILD_WITH_F2C" = "N" ; then
|
||||
build_with_f2c=0
|
||||
elif test $BUILD_WITH_F2C = "default" ; then
|
||||
if test x$OS_IS_WIN = "x1" ; then
|
||||
elif test "$BUILD_WITH_F2C" = "default" ; then
|
||||
if test "x$OS_IS_WIN" = "x1" ; then
|
||||
build_with_f2c=1
|
||||
else
|
||||
build_with_f2c=0
|
||||
|
|
|
|||
|
|
@ -415,6 +415,7 @@ export CT_SHARED_LIB
|
|||
export CXX
|
||||
export CXX_EXT
|
||||
export CXXFLAGS
|
||||
export CC
|
||||
export ENABLE_THERMO
|
||||
export ENABLE_KINETICS
|
||||
export ENABLE_TRANSPORT
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue