Deleted Added
full compact
mk-osreldate.sh (255957) mk-osreldate.sh (284289)
1#!/bin/sh -
2# Copyright (c) 2013 Garrett Cooper
3# All rights reserved.
4#
5# Redistribution and use in source and binary forms, with or without
6# modification, are permitted provided that the following conditions
7# are met:
8# 1. Redistributions of source code must retain the above copyright

--- 9 unchanged lines hidden (view full) ---

18# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20# OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24# SUCH DAMAGE.
25#
1#!/bin/sh -
2# Copyright (c) 2013 Garrett Cooper
3# All rights reserved.
4#
5# Redistribution and use in source and binary forms, with or without
6# modification, are permitted provided that the following conditions
7# are met:
8# 1. Redistributions of source code must retain the above copyright

--- 9 unchanged lines hidden (view full) ---

18# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20# OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24# SUCH DAMAGE.
25#
26# $FreeBSD: head/include/mk-osreldate.sh 255957 2013-09-30 21:01:04Z ian $
26# $FreeBSD: head/include/mk-osreldate.sh 284289 2015-06-11 21:13:05Z sjg $
27
28set -e
29
30CURDIR=$(pwd)
31ECHO=${ECHO:=echo}
32
33tmpfile=$(mktemp osreldate.XXXXXXXX)
34trap "rm -f $tmpfile" EXIT

--- 9 unchanged lines hidden (view full) ---

44#ifdef _KERNEL
45#error "<osreldate.h> cannot be used in the kernel, use <sys/param.h>"
46#else
47#undef __FreeBSD_version
48#define __FreeBSD_version $RELDATE
49#endif
50EOF
51chmod 644 $tmpfile
27
28set -e
29
30CURDIR=$(pwd)
31ECHO=${ECHO:=echo}
32
33tmpfile=$(mktemp osreldate.XXXXXXXX)
34trap "rm -f $tmpfile" EXIT

--- 9 unchanged lines hidden (view full) ---

44#ifdef _KERNEL
45#error "<osreldate.h> cannot be used in the kernel, use <sys/param.h>"
46#else
47#undef __FreeBSD_version
48#define __FreeBSD_version $RELDATE
49#endif
50EOF
51chmod 644 $tmpfile
52mv $tmpfile osreldate.h
52mv -f $tmpfile osreldate.h