Use \t instead of a tab char and since we've switched to using .php3
authorJoey Schulze <joey@infodrom.org>
Wed, 29 Sep 2004 17:29:48 +0000 (17:29 +0000)
committerJoey Schulze <joey@infodrom.org>
Wed, 29 Sep 2004 17:29:48 +0000 (17:29 +0000)
as base suffix the dependency generator needs to be adjusted as well.

bin/wmldepend.pl

index 7987516..61f6420 100755 (executable)
@@ -68,7 +68,7 @@ sub findincludes
            $p = $2;
            $foo = expandfile ($p, %var);
        }
-       printf " \\\n %s", $foo;
+       printf " \\\n\t%s", $foo;
        findincludes ($foo, %var);
     }
 }
@@ -86,7 +86,7 @@ while ($foo = shift (@ARGV)) {
 %var=();
 for $f (@FILES) {
     $foo = $f;
-    $foo =~ s/\.wml$/\.html/;
+    $foo =~ s/\.wml$/\.php3/;
     printf "%s: %s", $foo, $f;
     findincludes ($f, %var);
     print "\n";