automake
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

colon_infile seems wrong...


From: Harlan Stenn
Subject: colon_infile seems wrong...
Date: Thu, 08 Aug 2002 00:33:31 -0400
User-agent: EMH/1.10.0 SEMI/1.13.7 (Awazu) FLIM/1.13.2 (Kasanui) XEmacs/21.1 (patch 14) (Cuyahoga Valley) (i386--freebsd)

The rule in automake.in for generating colon_infile is (in 1.5, and it's
similar in 1.6.3):

    ...
    my $colon_infile = '';
    if ($local ne $input || @secondary_inputs)
    {
        $colon_infile = ':' . $input . '.in';
    }
    $colon_infile .= ':' . join (':', @secondary_inputs)
        if @secondary_inputs;

This seemd clearly wrong - it changes the order of the inputs, forcing
$input.in to be the first file of the generated sequence.

Is the solution to pass an extra early argument to handle_configure that is
the actual template string?

H



reply via email to

[Prev in Thread] Current Thread [Next in Thread]