mirror of https://github.com/aamine/cbc
cbc does not support stdin.
git-svn-id: file:///Users/aamine/c/gitwork/public/cbc/trunk@4064 1b9489fe-b721-0410-924e-b54b9192deb8
This commit is contained in:
parent
540c3c7fa3
commit
94db94b1c4
|
@ -142,12 +142,7 @@ class Options {
|
|||
List srcs = new ArrayList();
|
||||
while (args.hasNext()) {
|
||||
String arg = (String)args.next();
|
||||
// FIXME: stdin
|
||||
if (arg.equals("-")) {
|
||||
System.err.println("FIXME: stdin is not supported yet");
|
||||
System.exit(1);
|
||||
}
|
||||
else if (arg.equals("--")) {
|
||||
if (arg.equals("--")) {
|
||||
// "--" Stops command line processing
|
||||
break;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue