Skip to content
Snippets Groups Projects
Commit 394a28df authored by Raymond Toy's avatar Raymond Toy
Browse files

Don't bother to build clm or motifd on darwin/ppc. It's not likely

we'll ever install motif on that machine.
parent 5f81e241
No related branches found
No related tags found
No related merge requests found
......@@ -36,6 +36,7 @@ $TARGET/lisp/lisp \
(setq *gc-verbose* nil *interactive* nil)
(load "target:tools/clxcom")
(load "target:clx/clx-library")
#-ppc
(load "target:tools/clmcom")
(load "target:tools/hemcom")
......@@ -61,4 +62,17 @@ fi
export MAKE
${MAKE} -C $TARGET/motif/server clean && ${MAKE} -C $TARGET/motif/server
# Don't bother building motifd on ppc; we'll probably never support that again.
SKIPMOTIF=no
case `uname -s` in
Darwin)
case `uname -p` in
powerpc) SKIPMOTIF=yes ;;
esac ;;
esac
if [ "$SKIPMOTIF" = "no" ]; then
${MAKE} -C $TARGET/motif/server clean && ${MAKE} -C $TARGET/motif/server
fi
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment