}
else
{
- define_pretty_variable ($rpathvar, $rcond, INTERNAL, $val);
+ define_cond_variable ($rpathvar, $rcond, INTERNAL, $val);
}
}
## ------------------------ ##
-# &define_pretty_variable ($VAR, $COND, $WHERE, @VALUE)
+# &define_cond_variable ($VAR, $COND, $WHERE, @VALUE)
# -----------------------------------------------------
# Like define_variable, but the value is a list, and the variable may
# be defined conditionally. The second argument is the condition
# under which the value should be defined; this should be the empty
# string to define the variable unconditionally. The third argument
# is a list holding the values to use for the variable.
-sub define_pretty_variable ($$$@)
+sub define_cond_variable ($$$@)
{
my ($var, $cond, $where, @value) = @_;
sub define_variable ($$@)
{
my ($var, $where, @value) = @_;
- define_pretty_variable ($var, TRUE, $where, @value);
+ define_cond_variable ($var, TRUE, $where, @value);
}