Skip to content

Commit

Permalink
updated boost dir to /usr/include
Browse files Browse the repository at this point in the history
  • Loading branch information
sima-fastly committed Nov 16, 2023
1 parent 866536b commit b65ef81
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion configure
Original file line number Diff line number Diff line change
Expand Up @@ -587,7 +587,7 @@ public:
QString shortname() const { return "boost"; }
bool checkBoostVersion() {
QProcess process;
process.start("bash", QStringList() << "-c" << "grep \\"BOOST_LIB_VERSION\\" \$(find /usr/local/Cellar/boost/ /usr/include /usr/local/include -name 'version.hpp' 2> /dev/null | grep 'boost/version.hpp') | grep -v \\"//\\" | cut -d '\\"' -f2 | sed 's/_/./g'");
process.start("bash", QStringList() << "-c" << "grep \\"BOOST_LIB_VERSION\\" \$(find /usr/include -name 'version.hpp' 2> /dev/null | grep 'boost/version.hpp') | grep -v \\"//\\" | cut -d '\\"' -f2 | sed 's/_/./g'");
process.waitForFinished();
QString output(process.readAllStandardOutput());
output = output.trimmed();
Expand Down
2 changes: 1 addition & 1 deletion qcm/boost.qcm
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ public:
QString shortname() const { return "boost"; }
bool checkBoostVersion() {
QProcess process;
process.start("bash", QStringList() << "-c" << "grep \"BOOST_LIB_VERSION\" $(find /usr/local/Cellar/boost/ /usr/include /usr/local/include -name 'version.hpp' 2> /dev/null | grep 'boost/version.hpp') | grep -v \"//\" | cut -d '\"' -f2 | sed 's/_/./g'");
process.start("bash", QStringList() << "-c" << "grep \"BOOST_LIB_VERSION\" $(find /usr/include -name 'version.hpp' 2> /dev/null | grep 'boost/version.hpp') | grep -v \"//\" | cut -d '\"' -f2 | sed 's/_/./g'");
process.waitForFinished();
QString output(process.readAllStandardOutput());
output = output.trimmed();
Expand Down

0 comments on commit b65ef81

Please sign in to comment.