Commit 7f2113a2 authored by Richard Levitte's avatar Richard Levitte
Browse files

The option line may start with a space, which gives an empty option.

Make sure those are purged...
parent 97f56446
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -81,7 +81,7 @@ EOF
		}
	$platform=$_;
	}
foreach (split / /, $OPTIONS)
foreach (grep(!/^$/, split(/ /, $OPTIONS)))
	{
	print STDERR "unknown option - $_\n" if !&read_options;
	}