From 28b14bd5f1a6cb436b1be87ac5953c2252bee464 Mon Sep 17 00:00:00 2001 From: Julien Sagot Date: Sun, 1 Nov 2015 22:42:50 +0100 Subject: [PATCH 1/2] Fixed missing whitespace in Makefiles. --- src/baselib/Makefile | 2 +- src/extensions/Makefile | 2 +- src/http/Makefile | 2 +- src/server/Makefile | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/baselib/Makefile b/src/baselib/Makefile index a6fe6ccf2..6b99d60b7 100644 --- a/src/baselib/Makefile +++ b/src/baselib/Makefile @@ -13,7 +13,7 @@ PACKAGE := \ ipaddr \ ${SERVER_SYNTAX} ## See ../../Makefile.options LIBS := ${addprefix -package ,${PACKAGE}} -OCAMLC := $(OCAMLFIND) ocamlc${BYTEDBG} ${THREAD} +OCAMLC := $(OCAMLFIND) ocamlc ${BYTEDBG} ${THREAD} OCAMLOPT := $(OCAMLFIND) ocamlopt ${OPTDBG} ${THREAD} OCAMLDOC := $(OCAMLFIND) ocamldoc OCAMLDEP := $(OCAMLFIND) ocamldep diff --git a/src/extensions/Makefile b/src/extensions/Makefile index b8a165fe7..b7185f0f7 100644 --- a/src/extensions/Makefile +++ b/src/extensions/Makefile @@ -12,7 +12,7 @@ PACKAGE := \ ${SERVER_SYNTAX} ## See ../../Makefile.options LIBS := -I ../baselib -I ../http -I ../server ${addprefix -package ,${PACKAGE}} -OCAMLC := $(OCAMLFIND) ocamlc${BYTEDBG} +OCAMLC := $(OCAMLFIND) ocamlc ${BYTEDBG} OCAMLOPT := $(OCAMLFIND) ocamlopt ${OPTDBG} OCAMLDOC := $(OCAMLFIND) ocamldoc OCAMLDEP := $(OCAMLFIND) ocamldep diff --git a/src/http/Makefile b/src/http/Makefile index 5efdb1206..acb8ec949 100644 --- a/src/http/Makefile +++ b/src/http/Makefile @@ -8,7 +8,7 @@ PACKAGE := \ ${SERVER_SYNTAX} ## See ../../Makefile.options LIBS := -I ../baselib ${addprefix -package ,${PACKAGE}} -OCAMLC := $(OCAMLFIND) ocamlc${BYTEDBG} +OCAMLC := $(OCAMLFIND) ocamlc ${BYTEDBG} OCAMLOPT := $(OCAMLFIND) ocamlopt ${OPTDBG} OCAMLDOC := $(OCAMLFIND) ocamldoc OCAMLDEP := $(OCAMLFIND) ocamldep diff --git a/src/server/Makefile b/src/server/Makefile index 8bfccf982..b68d131c4 100644 --- a/src/server/Makefile +++ b/src/server/Makefile @@ -4,7 +4,7 @@ all: byte opt PACKAGE := ${SERVER_PACKAGE} ${SERVER_SYNTAX} ## See ../../Makefile.options LIBS := -I ../baselib -I ../http ${addprefix -package ,${PACKAGE}} -I . -OCAMLC := $(OCAMLFIND) ocamlc${BYTEDBG} ${THREAD} +OCAMLC := $(OCAMLFIND) ocamlc ${BYTEDBG} ${THREAD} OCAMLOPT := $(OCAMLFIND) ocamlopt ${OPTDBG} ${THREAD} OCAMLDOC := $(OCAMLFIND) ocamldoc OCAMLDEP := $(OCAMLFIND) ocamldep From 752c6089df25f17ee321d2cf1395a64f9253cdd3 Mon Sep 17 00:00:00 2001 From: Julien Sagot Date: Sun, 1 Nov 2015 22:55:02 +0100 Subject: [PATCH 2/2] Fixed missing hyphen sign in Makefile.options --- Makefile.options | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile.options b/Makefile.options index 3c7373f91..2711dd0a3 100644 --- a/Makefile.options +++ b/Makefile.options @@ -13,7 +13,7 @@ OPTDBG += -bin-annot endif ifeq "$(PROFILING)" "YES" -BYTEDBG :=p ${BYTEDBG} +BYTEDBG := -p ${BYTEDBG} OPTDBG += -p endif