From: Jakub Vrana Date: Sun, 16 Sep 2012 13:13:48 +0000 (-0700) Subject: Print compile errors to STDERR X-Git-Tag: v3.6.0~1 X-Git-Url: https://git.joonet.de/?a=commitdiff_plain;h=360218be0c7a35a3ce1f66611df3077b1d0e18e1;p=adminer.git Print compile errors to STDERR --- diff --git a/compile.php b/compile.php index f727d5bf..f02f2e19 100755 --- a/compile.php +++ b/compile.php @@ -298,7 +298,7 @@ foreach (glob(dirname(__FILE__) . "/adminer/drivers/" . ($driver ? $driver : "*" $file = file_get_contents($filename); foreach ($functions as $val) { if (!strpos($file, "$val(")) { - echo "Missing $val in $filename\n"; + fprintf(STDERR, "Missing $val in $filename\n"); } } }