Skip to content

Commit dad3b63

Browse files
authored
Update GNUMakefile include directory.
In case openmotif installed with macport instead of Homebrew, dependencies should be looked into /opt/local/.
1 parent 0adc266 commit dad3b63

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

GNUmakefile

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,12 @@ ifeq ($(which_site), unknown)
116116
# everything into the /usr/local tree.
117117
INCLUDE_LOCATIONS += /usr/local/include
118118
LIBRARY_LOCATIONS += /usr/local/lib
119-
119+
120+
# if dependencies installed via macport, everything symlinks
121+
# to /opt/local/
122+
INCLUDE_LOCATIONS += /opt/local/include
123+
LIBRARY_LOCATIONS += /opt/local/lib
124+
120125
# on macOS X11 is installed into the /opt tree
121126
INCLUDE_LOCATIONS += /opt/X11/include
122127
LIBRARY_LOCATIONS += /opt/X11/lib

0 commit comments

Comments
 (0)