newvers.sh (c02d762181b2adb4ff7a9aa8c4e9f5ddbca8e171) | newvers.sh (2a51529f7e23df8b4c4d8f1ebce4c97650d2cf16) |
---|---|
1#!/bin/sh - 2# 3# Copyright (c) 1984, 1986, 1990, 1993 4# The Regents of the University of California. All rights reserved. 5# 6# Redistribution and use in source and binary forms, with or without 7# modification, are permitted provided that the following conditions 8# are met: --- 22 unchanged lines hidden (view full) --- 31# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 32# SUCH DAMAGE. 33# 34# @(#)newvers.sh 8.1 (Berkeley) 4/20/94 35# $FreeBSD$ 36 37TYPE="FreeBSD" 38REVISION="5.1" | 1#!/bin/sh - 2# 3# Copyright (c) 1984, 1986, 1990, 1993 4# The Regents of the University of California. All rights reserved. 5# 6# Redistribution and use in source and binary forms, with or without 7# modification, are permitted provided that the following conditions 8# are met: --- 22 unchanged lines hidden (view full) --- 31# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 32# SUCH DAMAGE. 33# 34# @(#)newvers.sh 8.1 (Berkeley) 4/20/94 35# $FreeBSD$ 36 37TYPE="FreeBSD" 38REVISION="5.1" |
39BRANCH="CURRENT" | 39BRANCH="XP" |
40RELEASE="${REVISION}-${BRANCH}" 41VERSION="${TYPE} ${RELEASE}" 42 43if [ "X${PARAMFILE}" != "X" ]; then 44 RELDATE=$(awk '/__FreeBSD_version.*propagated to newvers/ {print $3}' \ 45 ${PARAMFILE}) 46else 47 RELDATE=$(awk '/__FreeBSD_version.*propagated to newvers/ {print $3}' \ --- 54 unchanged lines hidden --- | 40RELEASE="${REVISION}-${BRANCH}" 41VERSION="${TYPE} ${RELEASE}" 42 43if [ "X${PARAMFILE}" != "X" ]; then 44 RELDATE=$(awk '/__FreeBSD_version.*propagated to newvers/ {print $3}' \ 45 ${PARAMFILE}) 46else 47 RELDATE=$(awk '/__FreeBSD_version.*propagated to newvers/ {print $3}' \ --- 54 unchanged lines hidden --- |