January 28, 2007
http://d.puremagic.com/issues/show_bug.cgi?id=896

           Summary: gdmd (dmd-script) script broken for certain parameters
           Product: DGCC aka GDC
           Version: 0.21
          Platform: PC
        OS/Version: Linux
            Status: NEW
          Severity: normal
          Priority: P2
         Component: Phobos
        AssignedTo: dvdfrdmn@users.sf.net
        ReportedBy: sean@f4.ca


The Hd and Hf parameters construct their arguments like so:

    } elsif ( $arg =~ m/^-Hd(.*)$/ ) {
        push @out, '-fintfc-dir=$1';
    } elsif ( $arg =~ m/^-Hf(.*)$/ ) {
        push @out, '-fintfc-file=$1';

but these lines should be:

    } elsif ( $arg =~ m/^-Hd(.*)$/ ) {
        push @out, "-fintfc-dir=$1";
    } elsif ( $arg =~ m/^-Hf(.*)$/ ) {
        push @out, "-fintfc-file=$1";

ie. replace the single with double quotes.


-- 

March 07, 2007
http://d.puremagic.com/issues/show_bug.cgi?id=896


afb@algonet.se changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|                            |FIXED




------- Comment #1 from afb@algonet.se  2007-03-07 03:04 -------
This was fixed in SVN revision 85 (GDC release 0.22)


--