Commit e010ac97 authored by Daniel Stenberg's avatar Daniel Stenberg
Browse files

allow the ares/config.h display to fail

parent e4c0a85d
Loading
Loading
Loading
Loading
+5 −4
Original line number Diff line number Diff line
@@ -439,11 +439,12 @@ if (grepfile("define USE_ARES", "lib/config$confsuffix.h")) {
  logit "setup to build ares";

  logit "display ares/config$confsuffix.h";
  open(F, "ares/config$confsuffix.h") or die "ares/config$confsuffix.h: $!";
  if(open(F, "ares/config$confsuffix.h")) {
      while (<F>) {
          print if /^ *#/;
      }
      close(F);
  }

  logit "build ares";
  chdir "ares";