A couple of minor changes

This commit is contained in:
ceriel 1995-12-05 13:51:43 +00:00
parent 0a643bb9d0
commit ddc1751296
3 changed files with 8 additions and 10 deletions

View file

@ -1,8 +1,6 @@
++ ./doc/proto.make made ++ ./doc/install.pr made
++ ./doc/int/.distr made ++ ./doc/int/.distr made
++ ./h/em_mnem.h not present ++ ./etc/new_table_done made
++ ./h/em_pseu.h not present
++ ./h/em_spec.h not present
++ ./lang/cem/cemcom.ansi/Version.c made ++ ./lang/cem/cemcom.ansi/Version.c made
++ ./lang/cem/libcc.ansi/stdlib/malloc.c made ++ ./lang/cem/libcc.ansi/stdlib/malloc.c made
++ ./lang/cem/cemcom/Version.c made ++ ./lang/cem/cemcom/Version.c made
@ -13,8 +11,5 @@
++ ./mach/sparc_solaris/libem/LIST made ++ ./mach/sparc_solaris/libem/LIST made
++ ./util/LLgen/src/LLgen.c.dist made ++ ./util/LLgen/src/LLgen.c.dist made
++ ./util/cpp/Version.c made ++ ./util/cpp/Version.c made
++ ./util/data/em_flag.c not present
++ ./util/data/em_mnem.c not present
++ ./util/data/em_pseu.c not present
++ ./util/ego/share/pop_push.h made ++ ./util/ego/share/pop_push.h made
++ ./util/grind/ops.c made ++ ./util/grind/ops.c made

View file

@ -42,8 +42,8 @@ Now, the tree contains all the files in the distribution, but it also contains
files that should not be in the distribution, especially the files created files that should not be in the distribution, especially the files created
by CVS. by CVS.
That is why we now give the command: That is why we now give the command:
dtar cdf distr5 . dtar cdf distr .
The file distr5 is the one you should put on tape! The file distr is the one you should put on tape!
But,.... before doing that: Try it out! But,.... before doing that: Try it out!
Repeat the process described in the installation manual. Repeat the process described in the installation manual.
Only if that succeeds you are sure that you included the files needed. Only if that succeeds you are sure that you included the files needed.

View file

@ -1,6 +1,9 @@
case $1 in case $1 in
.) ;; .) ;;
*) mkdir $DESTDIR/$1 *) if [ -d $DESTDIR/$1 ]
then :
else mkdir $DESTDIR/$1
fi
;; ;;
esac esac
p=$REPDIR/$1 p=$REPDIR/$1