summaryrefslogtreecommitdiff
path: root/mcon/U/Prefixup.U
blob: 7f0cabf4615117a8cdefcef5b10ec8a3dd4ce3d3 (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
?RCS: $Id: Prefixup.U 1 2006-08-24 12:32:52Z rmanfredi $
?RCS:
?RCS: Copyright (c) 1991-1997, 2004-2006, Raphael Manfredi
?RCS: 
?RCS: You may redistribute only under the terms of the Artistic Licence,
?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 Licence; a copy of which may be found at the root
?RCS: of the source tree for dist 4.0.
?RCS:
?RCS: $Log: Prefixup.U,v $
?RCS: Revision 3.0.1.1  1995/01/30  14:30:40  ram
?RCS: patch49: created
?RCS:
?X:
?X: Used as: "set dflt; eval $prefixup" to set $dflt to be $prefix/dir
?X: instead of $prefixexp/dir, in case portability was involved somehow
?X: and $prefix uses ~name expansion.
?X:
?MAKE:Prefixup: prefix prefixexp
?MAKE:	-pick add $@ %<
?LINT:define prefixup
?S:prefixup:
?S:	This shell variable is used internally by Configure to reset
?S:	the leading installation prefix correctly when $prefix uses
?S:	~name expansion.
?S:		set dflt
?S:		eval $prefixup
?S:	That will set $dflt to $prefix/dir if it was $prefixexp/dir and
?S:	$prefix differs from $prefixexp.
?S:.
?V:prefixup
: set the prefixup variable, to restore leading tilda escape
prefixup='case "$prefixexp" in
"$prefix") ;;
*) eval "$1=\`echo \$$1 | sed \"s,^$prefixexp,$prefix,\"\`";;
esac'