mirror of
https://git.freebsd.org/ports.git
synced 2025-06-07 13:50:38 -04:00
- deskutils/tomboy, devel/ocaml-deriving-ocsigen: patch Makefile bug. - games/0ad: disable make jobs when building bundled Spidermonkey. PR: 209868 Exp-run by: antoine Approved by: portmgr (antoine)
15 lines
626 B
Text
15 lines
626 B
Text
--- syntax/Makefile.orig 2011-12-08 04:46:54 UTC
|
|
+++ syntax/Makefile
|
|
@@ -39,9 +39,9 @@ ifneq (${TYPECONV},)
|
|
MAIN_TC := pa_deriving_tc.ml
|
|
endif
|
|
|
|
-CLASSES_CMO := $(patsubst %.ml,classes/%.cmo$,${CLASSES})
|
|
-CLASSES_CMX := $(patsubst %.ml,classes/%.cmx$,${CLASSES})
|
|
-CLASSES_DEPS := $(patsubst %.ml,classes/.%.ml.deps$,${CLASSES})
|
|
+CLASSES_CMO := $(patsubst %.ml,classes/%.cmo,${CLASSES})
|
|
+CLASSES_CMX := $(patsubst %.ml,classes/%.cmx,${CLASSES})
|
|
+CLASSES_DEPS := $(patsubst %.ml,classes/.%.ml.deps,${CLASSES})
|
|
|
|
${CLASSES_CMO} ${CLASSES_CMX} ${CLASSES_DEPS}: \
|
|
LIBS+=-syntax camlp4o -package camlp4.quotations.o -I classes
|