[project @ 1999-07-27 15:56:59 by simonmar]
[ghc-hetmet.git] / ghc / utils / hscpp / hscpp.prl
index 8d753e5..e56ef26 100644 (file)
@@ -37,9 +37,14 @@ open(INPIPE, "$Cpp @args - <$file |")
 while (<INPIPE>) {
 
 # line directives come in flavo[u]rs:
+
+    s/^#\s*line\s+(\d+)\s+(\"\")$//;
+    s/^#\s*(\d+)\s+(\"\").*//;  # these are a result of our using stdin in
+                               # the $(CPP) command line above.
+
 #   s/^#\s*line\s+\d+$/\{\-# LINE \-\}/;   IGNORE THIS ONE FOR NOW
-    s/^#\s*line\s+(\d+)\s+(\".+\")$/\{\-# LINE \1 \"$file\" \-\}/;
-    s/^#\s*(\d+)\s+(\".*\").*/\{\-# LINE \1 \"$file\" \-\}/;
+    s/^#\s*line\s+(\d+)\s+(\".+\")$/\{\-# LINE \1 \2 \-\}/;
+    s/^#\s*(\d+)\s+(\".*\").*/\{\-# LINE \1 \2 \-\}/;
 
     print $_;
 }