From 0abe11a7e4f70b01e0792d0be21bd43b171b3157 Mon Sep 17 00:00:00 2001 From: usa Date: Tue, 11 Jun 2002 04:16:58 +0000 Subject: * bcc32/Makefile.sub: set PROCESSOR_LEVEL to 6 if it's too big value. * win32/Makefile.sub: ditto. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@2545 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- bcc32/Makefile.sub | 3 +++ 1 file changed, 3 insertions(+) (limited to 'bcc32') diff --git a/bcc32/Makefile.sub b/bcc32/Makefile.sub index 9ef83105c..c5f7c16ef 100644 --- a/bcc32/Makefile.sub +++ b/bcc32/Makefile.sub @@ -50,6 +50,9 @@ AUTOCONF = autoconf !ifndef PROCESSOR_LEVEL PROCESSOR_LEVEL = 5 !endif +!if 6 < $(PROCESSOR_LEVEL) +PROCESSOR_LEVEL = 6 +!endif PROCESSOR_FLAG = -$(PROCESSOR_LEVEL) CPU = i$(PROCESSOR_LEVEL)86 ARCH = i$(PROCESSOR_LEVEL)86 -- cgit