Remove a dead variable from ldmd.

(It used to be used to pass an extra -help to ldc when no files were
specified, but we handle that in ldc itself now)
This commit is contained in:
Frits van Bommel
2009-03-08 09:57:20 +01:00
parent d8c89ce681
commit 302990a0ba

View File

@@ -14,7 +14,6 @@ if [ ! -x "$LDC" ]; then
fi
declare -a ARGS
SeenFile=0
IDX=0
for arg; do
case "$arg" in
@@ -29,11 +28,6 @@ for arg; do
# Are these ever used?
arg="-hidden-debug${arg:1}"
;;
-*)
;;
*)
SeenFile=1
;;
esac
ARGS[IDX++]="$arg"
done