From 4ca0b9272347943ef0527534cdef44454558ebdd Mon Sep 17 00:00:00 2001 From: Timo Heister Date: Fri, 9 Nov 2018 11:18:34 -0500 Subject: [PATCH] fix path directive in cmake package otherwise $PATH will be expanded in the config file --- deal.II-toolchain/packages/cmake.package | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deal.II-toolchain/packages/cmake.package b/deal.II-toolchain/packages/cmake.package index 0a8766b..6e779be 100644 --- a/deal.II-toolchain/packages/cmake.package +++ b/deal.II-toolchain/packages/cmake.package @@ -52,7 +52,7 @@ package_specific_conf () { CONFIG_FILE=${CONFIGURATION_PATH}/${NAME} rm -f $CONFIG_FILE echo " -export PATH=${INSTALL_PATH}/bin:${PATH} +export PATH=${INSTALL_PATH}/bin:\${PATH} export CMAKE_ROOT=${INSTALL_PATH}/share/${MAJOR} " >> $CONFIG_FILE } -- 2.39.5