From 73ee7119d2f3a75b95b3c0497b063a668d7d579a Mon Sep 17 00:00:00 2001 From: "K. Noel Belcourt" Date: Sat, 29 Mar 2008 02:03:29 +0000 Subject: [PATCH] Fix typo (forgot space before semi-colon). [SVN r43920] --- src/tools/intel-darwin.jam | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/tools/intel-darwin.jam b/src/tools/intel-darwin.jam index 5efce57e0..88ba3c1ed 100644 --- a/src/tools/intel-darwin.jam +++ b/src/tools/intel-darwin.jam @@ -117,8 +117,8 @@ flags intel-darwin.compile OPTIONS space : -O1 ; # no specific spa # cpu-type-em64t = prescott nocona ; -flags intel-darwin.compile OPTIONS $(cpu-type-em64t)/32 : -m32; # -mcmodel=small ; -flags intel-darwin.compile OPTIONS $(cpu-type-em64t)/64 : -m64; # -mcmodel=large ; +flags intel-darwin.compile OPTIONS $(cpu-type-em64t)/32 : -m32 ; # -mcmodel=small ; +flags intel-darwin.compile OPTIONS $(cpu-type-em64t)/64 : -m64 ; # -mcmodel=large ; flags intel-darwin.compile.c OPTIONS off : -w0 ; flags intel-darwin.compile.c OPTIONS on : -w1 ;