This bug may affect install of gdc on Linux, as well. I'm not really clear on whether there are configurations per platform.
1. Install DSSS from the Mac OS X .dmg file.
1. From Terminal, run dsss net install gdc-gcc-4.0
Expected:
GDC is installed
Actual:
The install fails partway through:
+ bunzip2 -c gdc-0.24-src.tar.bz2
bunzip2: Can't open input file gdc-0.24-src.tar.bz2: No such file or directory.
The problem is in this line of the script dsssgdc:
line 20:
curl http://superb-west.dl.sourceforge.net/sourceforge/dgcc/gdc-0.24-src.tar.bz2 -o gdc-0.23-src.tar.bz2 || exit 1
Note that it's pulling version 0.24 of the bzipped tarball but writing the filename as version 0.23 . . . then subsequently trying to untar version 0.24. Seems like the -o argument could just go away.