summaryrefslogtreecommitdiff
path: root/mcon/U/Begin.U
blob: da6d657106042998aec34d9e45ae16fd49629e06 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
?RCS: $Id: Begin.U 167 2013-05-08 17:58:00Z rmanfredi $
?RCS:
?RCS: Copyright (c) 1991-1997, 2004-2006, Raphael Manfredi
?RCS: 
?RCS: You may redistribute only under the terms of the Artistic License,
?RCS: as specified in the README file that comes with the distribution.
?RCS: You may reuse parts of this distribution only within the terms of
?RCS: that same Artistic License; a copy of which may be found at the root
?RCS: of the source tree for dist 4.0.
?RCS:
?RCS: $Log: Begin.U,v $
?RCS: Revision 3.0.1.3  1997/02/28  14:56:35  ram
?RCS: patch61: added Extractall dependency
?RCS:
?RCS: Revision 3.0.1.2  1995/01/30  14:25:08  ram
?RCS: patch49: avoid an empty rmlist: systems might choke on it (WED)
?RCS:
?RCS: Revision 3.0.1.1  1994/10/31  09:32:20  ram
?RCS: patch44: created
?RCS:
?X: 
?X: This file comes after option processing had been done and after all
?X: the default values have been set up. It marks the beginning of questions.
?X: It is important that Options be listed *after* Myinit to ensure that the
?X: default initializations performed by Init and Myinit will not clobber
?X: any setting done on the command line via -D or -U.
?X:
?MAKE:Begin: Myinit Options package Extractall
?MAKE:	-pick add $@ %<
: Eunice requires " " instead of "", can you believe it
echo " "
: Here we go...
echo "Beginning of configuration questions for $package."

?X: Make sure the rm below is given a non-empty list for some systems.
?X: This is run only when within the UU directory, hence we can safely
?X: attempt to rm a non-existent 'X' file...
trap 'echo " "; test -d ../UU && rm -rf X $rmlist; exit 1' 1 2 3 15