comparison auto/os/freebsd @ 686:0bbb66f76af1

fix typo
author Igor Sysoev <igor@sysoev.ru>
date Wed, 06 Sep 2006 19:07:31 +0000
parents 9c2f3ed7a247
children 113cd532b328
comparison
equal deleted inserted replaced
685:364195c9ee00 686:0bbb66f76af1
12 ' 12 '
13 13
14 14
15 # __FreeBSD_version and sysctl kern.osreldate are the best ways 15 # __FreeBSD_version and sysctl kern.osreldate are the best ways
16 # to determine whether some capability exists and is safe to use. 16 # to determine whether some capability exists and is safe to use.
17 # __FreeBSD_version is used for the testing of the build enviroment. 17 # __FreeBSD_version is used for the testing of the build environment.
18 # sysctl kern.osreldate is used for the testing of the kernel capabilities. 18 # sysctl kern.osreldate is used for the testing of the kernel capabilities.
19 19
20 version=`grep "#define __FreeBSD_version" /usr/include/osreldate.h \ 20 version=`grep "#define __FreeBSD_version" /usr/include/osreldate.h \
21 | sed -e 's/^.* \(.*\)$/\1/'` 21 | sed -e 's/^.* \(.*\)$/\1/'`
22 22