Skip to content

Commit

Permalink
fix macOS build
Browse files Browse the repository at this point in the history
  • Loading branch information
devernay committed Jul 8, 2021
1 parent 61bb44e commit ab12fc2
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion INSTALL_MACOS.md
Original file line number Diff line number Diff line change
Expand Up @@ -351,7 +351,7 @@ config.pri:
# copy and paste the following in a terminal
cat > config.pri << EOF
boost {
BOOST_VERSION = \$\$system("grep 'default boost.version' /opt/local/var/macports/sources/rsync.macports.org/macports/release/tarballs/ports/_resources/port1.0/group/boost-1.0.tcl |awk '{ print \$3 }'")
BOOST_VERSION = \$\$system("ls /opt/local/libexec/boost|sort|tail -1")
message("found boost \$\$BOOST_VERSION")
INCLUDEPATH += /opt/local/libexec/boost/\$\$BOOST_VERSION/include
LIBS += -L/opt/local/libexec/boost/\$\$BOOST_VERSION/lib -lboost_serialization-mt
Expand Down
2 changes: 1 addition & 1 deletion tools/jenkins/include/natron/OSX.pri
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
boost {
BOOST_VERSION = $$system("grep 'default boost.version' /opt/local/var/macports/sources/rsync.macports.org/macports/release/tarballs/ports/_resources/port1.0/group/boost-1.0.tcl |awk '{ print $3 }'")
BOOST_VERSION = $$system("ls /opt/local/libexec/boost|sort|tail -1")
message("found boost $$BOOST_VERSION")
INCLUDEPATH += /opt/local/libexec/boost/$$BOOST_VERSION/include
LIBS += -L/opt/local/libexec/boost/$$BOOST_VERSION/lib -lboost_serialization-mt
Expand Down
2 changes: 1 addition & 1 deletion tools/jenkins/include/natron/OSX_natron3.pri
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
boost {
BOOST_VERSION = $$system("grep 'default boost.version' /opt/local/var/macports/sources/rsync.macports.org/macports/release/tarballs/ports/_resources/port1.0/group/boost-1.0.tcl |awk '{ print $3 }'")
BOOST_VERSION = $$system("ls /opt/local/libexec/boost|sort|tail -1")
message("found boost $$BOOST_VERSION")
INCLUDEPATH += /opt/local/libexec/boost/$$BOOST_VERSION/include
LIBS += -L/opt/local/libexec/boost/$$BOOST_VERSION/lib -lboost_serialization-mt
Expand Down

0 comments on commit ab12fc2

Please sign in to comment.