From f7b5714171b9f2656a0bff80a46ffd2df847031d Mon Sep 17 00:00:00 2001 From: Kurt Zeilenga Date: Fri, 28 Aug 1998 05:44:46 +0000 Subject: [PATCH] Missed on of the FreeBSD split pieces --- Makefile | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index a19ecd2cf2..888b30a507 100644 --- a/Makefile +++ b/Makefile @@ -296,7 +296,12 @@ makeconfig: .makefiles buildtools PLATFORM="netbsd" \ ;; \ FreeBSD) \ - PLATFORM="freebsd" \ + MAJRELEASE=`echo $$OSRELEASE | sed 's/\..*//'` ; \ + if [ $$MAJRELEASE -lt 3 ]; then \ + PLATFORM="freebsd2" ; \ + else \ + PLATFORM="freebsd3" ; \ + fi; \ ;; \ NeXTSTEP) \ PLATFORM="nextstep" \ -- 2.39.5