}
+static int set_ignore_errors (const char *arg) {
+
+ (void) arg;
+
+ state->ignore_errors = 1;
+ return 0;
+
+}
+
+static int set_dry_run (const char *arg) {
+
+ (void) arg;
+
+ state->dry_run = 1;
+ return 0;
+
+}
+
static int set_no_print (const char *arg) {
(void) arg;
{ "--file=", &add_makefile },
{ "-f:", &add_makefile },
+ { "--ignore-errors", &set_ignore_errors },
+ { "-i", &set_ignore_errors },
+
+ { "--dry_run", &set_dry_run },
+ { "-n", &set_dry_run },
+
+
+
{ 0, &non_option }
};
char *new_value;
int ret;
- if (!(lbuf.f = fopen (filename, "r"))) {
+ if (strcmp (filename, "-") == 0) {
+
+ filename = "<stdin>";
+ lbuf.f = stdin;
+
+ } else if (!(lbuf.f = fopen (filename, "r"))) {
return 1;
}
}
ret = read_lbuf (&lbuf, 1);
-
free (lbuf.start);
- fclose (lbuf.f);
+
+ if (lbuf.f != stdin) {
+ fclose (lbuf.f);
+ }
return ret;
} else if (opt == VAR_SHELL) {
- fprintf (stderr, "+++internal error: != not supported yet. Stop.\n");
- exit (EXIT_FAILURE);
+ char *temp = xstrdup (new_value);
+ free (new_value);
+
+ new_value = variable_expand_line (filename, line_no, func_shell (filename, line_no, temp));
+ free (temp);
}