Changeset f0c27947efb2fab7144ffd3425e3822d6073d622
- Timestamp:
- 16/03/08 21:34:41
(7 months ago)
- Author:
- Rémi Duraffort <ivoire@videolan.org>
- git-committer:
- Rémi Duraffort <ivoire@videolan.org> 1205699681 +0100
- git-parent:
[54c23b66191ff8c50c699b0b92bc0e1bc617924c]
- git-author:
- Rémi Duraffort <ivoire@videolan.org> 1205699607 +0100
- Message:
During the compilation, print errors and warnings on stderr.
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r09ec56b |
rf0c2794 |
|
| 64 | 64 | $line =~ s/.*is\sdeprecated.*/WARNING : $line/g ) |
|---|
| 65 | 65 | { |
|---|
| 66 | | print $warn.$line.$reset."\n"; |
|---|
| | 66 | print STDERR $warn.$line.$reset."\n"; |
|---|
| 67 | 67 | } |
|---|
| 68 | 68 | # Error |
|---|
| … | … | |
| 70 | 70 | $line =~ s/(.*):([0-9]*):\serror\:(.*)/ERROR : $file$1: $lineno$2: $error$3/g ) |
|---|
| 71 | 71 | { |
|---|
| 72 | | print $error.$line.$reset."\n"; |
|---|
| | 72 | print STDERR $error.$line.$reset."\n"; |
|---|
| 73 | 73 | } |
|---|
| 74 | 74 | # Print unmatched lines |
|---|