root/lang/objective-cplusplus/i3/trunk/scripts/gnustep-config-filter.pl @ 31213

Revision 31213, 190 bytes (checked in by saturday06, 4 years ago)

bu

Line 
1use strict;
2use warnings;
3
4open(INPUT, join(' ', @ARGV) . '|');
5while (<INPUT>) {
6    next if (/^make\[\d+\]: /);
7    while (s/\s(-O\d?|-g\d?|-s|\r|\n|\cx)\s/ /g) {}
8    print;
9    last;
10}
11
Note: See TracBrowser for help on using the browser.