Skip to content

Commit 62c41f3

Browse files
committed
Fixed install prefix for package building
1 parent b76ec65 commit 62c41f3

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

config/buildpkg.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ if [ -f /etc/redhat-release ]; then
1616
cmake .. -DPACKAGING_MODE=ON -DCMAKE_INSTALL_PREFIX=/usr
1717
fi
1818
else
19-
cmake ..
19+
cmake .. -DCMAKE_INSTALL_PREFIX=/usr
2020
fi
2121
make
2222
sudo cpack

core/SympyCdb.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
using namespace cadabra;
1313

14-
//#define DEBUG
14+
// #define DEBUG
1515

1616
Ex::iterator sympy::apply(const Kernel& kernel, Ex& ex, Ex::iterator& it, const std::vector<std::string>& wrap, const std::string& args,
1717
const std::string& method)

0 commit comments

Comments
 (0)