Add a missing file and increase the version number.
This commit is contained in:
parent
cd93e2f5f9
commit
62cba90d65
10 changed files with 109 additions and 10 deletions
17
ChangeLog
17
ChangeLog
|
@ -1,3 +1,14 @@
|
||||||
|
2001-07-05 OKUJI Yoshinori <okuji@gnu.org>
|
||||||
|
|
||||||
|
* configure.in (AM_INIT_AUTOMAKE): Set the version number to
|
||||||
|
0.90.
|
||||||
|
|
||||||
|
2001-07-05 OKUJI Yoshinori <okuji@gnu.org>
|
||||||
|
|
||||||
|
Ughh! I forgot to add this file to the CVS.
|
||||||
|
|
||||||
|
* docs/compile: New file.
|
||||||
|
|
||||||
2001-07-05 OKUJI Yoshinori <okuji@gnu.org>
|
2001-07-05 OKUJI Yoshinori <okuji@gnu.org>
|
||||||
|
|
||||||
* docs/grub.texi: Updated.
|
* docs/grub.texi: Updated.
|
||||||
|
@ -11,6 +22,12 @@
|
||||||
|
|
||||||
2001-07-04 OKUJI Yoshinori <okuji@gnu.org>
|
2001-07-04 OKUJI Yoshinori <okuji@gnu.org>
|
||||||
|
|
||||||
|
* stage2/compile: New file.
|
||||||
|
* docs/mdate-sh: Likewise.
|
||||||
|
* docs/texinfo.tex: Likewise.
|
||||||
|
* compile: Removed.
|
||||||
|
* mdate-sh: Likewise.
|
||||||
|
* texinfo.tex: Likewise.
|
||||||
* config.guess: Updated from automake-1.4h.
|
* config.guess: Updated from automake-1.4h.
|
||||||
* config.sub: Likewise.
|
* config.sub: Likewise.
|
||||||
* depcomp: Likewise.
|
* depcomp: Likewise.
|
||||||
|
|
2
configure
vendored
2
configure
vendored
|
@ -897,7 +897,7 @@ fi
|
||||||
|
|
||||||
# Define the identity of the package.
|
# Define the identity of the package.
|
||||||
PACKAGE=grub
|
PACKAGE=grub
|
||||||
VERSION=0.5.97
|
VERSION=0.90
|
||||||
cat >> confdefs.h <<EOF
|
cat >> confdefs.h <<EOF
|
||||||
#define PACKAGE "$PACKAGE"
|
#define PACKAGE "$PACKAGE"
|
||||||
EOF
|
EOF
|
||||||
|
|
|
@ -13,7 +13,7 @@ dnl LIABILITY OF ANY KIND FOR ANY DAMAGES WHATSOEVER RESULTING FROM THE
|
||||||
dnl USE OF THIS SOFTWARE.
|
dnl USE OF THIS SOFTWARE.
|
||||||
|
|
||||||
AC_INIT(stage2/stage2.c)
|
AC_INIT(stage2/stage2.c)
|
||||||
AM_INIT_AUTOMAKE(grub, 0.5.97)
|
AM_INIT_AUTOMAKE(grub, 0.90)
|
||||||
AM_CONFIG_HEADER(config.h)
|
AM_CONFIG_HEADER(config.h)
|
||||||
AC_PREREQ(2.13)
|
AC_PREREQ(2.13)
|
||||||
|
|
||||||
|
|
|
@ -147,7 +147,7 @@ TEXINFOS = grub.texi multiboot.texi
|
||||||
NROFF = nroff
|
NROFF = nroff
|
||||||
MANS = $(man_MANS)
|
MANS = $(man_MANS)
|
||||||
DIST_COMMON = $(grub_TEXINFOS) $(multiboot_TEXINFOS) Makefile.am \
|
DIST_COMMON = $(grub_TEXINFOS) $(multiboot_TEXINFOS) Makefile.am \
|
||||||
Makefile.in mdate-sh stamp-vti texinfo.tex version.texi
|
Makefile.in compile mdate-sh stamp-vti texinfo.tex version.texi
|
||||||
SOURCES = $(kernel_SOURCES)
|
SOURCES = $(kernel_SOURCES)
|
||||||
|
|
||||||
all: all-am
|
all: all-am
|
||||||
|
|
82
docs/compile
Normal file
82
docs/compile
Normal file
|
@ -0,0 +1,82 @@
|
||||||
|
#! /bin/sh
|
||||||
|
|
||||||
|
# Wrapper for compilers which do not understand `-c -o'.
|
||||||
|
|
||||||
|
# Copyright 1999, 2000 Free Software Foundation, Inc.
|
||||||
|
# Written by Tom Tromey <tromey@cygnus.com>.
|
||||||
|
#
|
||||||
|
# This program is free software; you can redistribute it and/or modify
|
||||||
|
# it under the terms of the GNU General Public License as published by
|
||||||
|
# the Free Software Foundation; either version 2, or (at your option)
|
||||||
|
# any later version.
|
||||||
|
#
|
||||||
|
# This program is distributed in the hope that it will be useful,
|
||||||
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
# GNU General Public License for more details.
|
||||||
|
#
|
||||||
|
# You should have received a copy of the GNU General Public License
|
||||||
|
# along with this program; if not, write to the Free Software
|
||||||
|
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
||||||
|
|
||||||
|
# Usage:
|
||||||
|
# compile PROGRAM [ARGS]...
|
||||||
|
# `-o FOO.o' is removed from the args passed to the actual compile.
|
||||||
|
|
||||||
|
prog=$1
|
||||||
|
shift
|
||||||
|
|
||||||
|
ofile=
|
||||||
|
cfile=
|
||||||
|
args=
|
||||||
|
while test $# -gt 0; do
|
||||||
|
case "$1" in
|
||||||
|
-o)
|
||||||
|
ofile=$2
|
||||||
|
shift
|
||||||
|
;;
|
||||||
|
*.c)
|
||||||
|
cfile=$1
|
||||||
|
args="$args $1"
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
args="$args $1"
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
shift
|
||||||
|
done
|
||||||
|
|
||||||
|
test -z "$ofile" && {
|
||||||
|
echo "compile: no \`-o' option seen" 1>&2
|
||||||
|
exit 1
|
||||||
|
}
|
||||||
|
|
||||||
|
test -z "$cfile" && {
|
||||||
|
echo "compile: no \`.c' file seen" 1>&2
|
||||||
|
exit 1
|
||||||
|
}
|
||||||
|
|
||||||
|
# Name of file we expect compiler to create.
|
||||||
|
cofile=`echo $cfile | sed -e 's|^.*/||' -e 's/\.c$/.o/'`
|
||||||
|
|
||||||
|
# Create the lock directory.
|
||||||
|
lockdir=`echo $ofile | sed -e 's|/|_|g'`
|
||||||
|
while true; do
|
||||||
|
if mkdir $lockdir > /dev/null 2>&1; then
|
||||||
|
break
|
||||||
|
fi
|
||||||
|
sleep 1
|
||||||
|
done
|
||||||
|
# FIXME: race condition here if user kills between mkdir and trap.
|
||||||
|
trap "rmdir $lockdir; exit 1" 1 2 15
|
||||||
|
|
||||||
|
# Run the compile.
|
||||||
|
"$prog" $args
|
||||||
|
status=$?
|
||||||
|
|
||||||
|
if test -f "$cofile"; then
|
||||||
|
mv "$cofile" "$ofile"
|
||||||
|
fi
|
||||||
|
|
||||||
|
rmdir $lockdir
|
||||||
|
exit $status
|
|
@ -1,5 +1,5 @@
|
||||||
.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.23.
|
.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.23.
|
||||||
.TH GRUB-INSTALL "8" "July 2001" "grub-install (GNU GRUB 0.5.97)" FSF
|
.TH GRUB-INSTALL "8" "July 2001" "grub-install (GNU GRUB 0.90)" FSF
|
||||||
.SH NAME
|
.SH NAME
|
||||||
grub-install \- install GRUB on your drive
|
grub-install \- install GRUB on your drive
|
||||||
.SH SYNOPSIS
|
.SH SYNOPSIS
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.23.
|
.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.23.
|
||||||
.TH GRUB "8" "July 2001" "grub (GNU GRUB 0.5.97)" FSF
|
.TH GRUB "8" "July 2001" "grub (GNU GRUB 0.90)" FSF
|
||||||
.SH NAME
|
.SH NAME
|
||||||
grub \- the grub shell
|
grub \- the grub shell
|
||||||
.SH SYNOPSIS
|
.SH SYNOPSIS
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.23.
|
.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.23.
|
||||||
.TH MBCHK "1" "July 2001" "mbchk (GNU GRUB 0.5.97)" FSF
|
.TH MBCHK "1" "July 2001" "mbchk (GNU GRUB 0.90)" FSF
|
||||||
.SH NAME
|
.SH NAME
|
||||||
mbchk \- check the format of a Multiboot kernel
|
mbchk \- check the format of a Multiboot kernel
|
||||||
.SH SYNOPSIS
|
.SH SYNOPSIS
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
@set UPDATED 5 July 2001
|
@set UPDATED 5 July 2001
|
||||||
@set UPDATED-MONTH July 2001
|
@set UPDATED-MONTH July 2001
|
||||||
@set EDITION 0.5.97
|
@set EDITION 0.90
|
||||||
@set VERSION 0.5.97
|
@set VERSION 0.90
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
@set UPDATED 5 July 2001
|
@set UPDATED 5 July 2001
|
||||||
@set UPDATED-MONTH July 2001
|
@set UPDATED-MONTH July 2001
|
||||||
@set EDITION 0.5.97
|
@set EDITION 0.90
|
||||||
@set VERSION 0.5.97
|
@set VERSION 0.90
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue