mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-20 22:59:34 -05:00
Missed on of the FreeBSD split pieces
This commit is contained in:
parent
7963420cde
commit
f7b5714171
1 changed files with 6 additions and 1 deletions
7
Makefile
7
Makefile
|
|
@ -296,7 +296,12 @@ makeconfig: .makefiles buildtools
|
||||||
PLATFORM="netbsd" \
|
PLATFORM="netbsd" \
|
||||||
;; \
|
;; \
|
||||||
FreeBSD) \
|
FreeBSD) \
|
||||||
PLATFORM="freebsd" \
|
MAJRELEASE=`echo $$OSRELEASE | sed 's/\..*//'` ; \
|
||||||
|
if [ $$MAJRELEASE -lt 3 ]; then \
|
||||||
|
PLATFORM="freebsd2" ; \
|
||||||
|
else \
|
||||||
|
PLATFORM="freebsd3" ; \
|
||||||
|
fi; \
|
||||||
;; \
|
;; \
|
||||||
NeXTSTEP) \
|
NeXTSTEP) \
|
||||||
PLATFORM="nextstep" \
|
PLATFORM="nextstep" \
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue