← Back to index
|
Original Bugzilla link
Bug 896 – gdmd (dmd-script) script broken for certain parameters
Status
RESOLVED
Resolution
FIXED
Severity
normal
Priority
P2
Component
dmd
Product
D
Version
D2
Platform
x86
OS
Linux
Creation time
2007-01-27T21:25:00Z
Last change time
2015-06-09T05:15:02Z
Assigned to
dvdfrdmn
Creator
sean
Comments
Comment #0
by sean — 2007-01-27T21:25:16Z
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.
Comment #1
by afb — 2007-03-07T03:04:43Z
This was fixed in SVN revision 85 (GDC release 0.22)