Left: | ||
Right: |
LEFT | RIGHT |
---|---|
1 #!/usr/bin/env python | |
2 | |
3 # This file is part of Adblock Plus <https://adblockplus.org/>, | |
4 # Copyright (C) 2006-present eyeo GmbH | |
5 # | |
6 # Adblock Plus is free software: you can redistribute it and/or modify | |
7 # it under the terms of the GNU General Public License version 3 as | |
8 # published by the Free Software Foundation. | |
9 # | |
10 # Adblock Plus is distributed in the hope that it will be useful, | |
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of | |
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
13 # GNU General Public License for more details. | |
14 # | |
15 # You should have received a copy of the GNU General Public License | |
16 # along with Adblock Plus. If not, see <http://www.gnu.org/licenses/>. | |
17 | |
18 | |
19 print "This script is deprecated.\n" | |
20 print "Please use meson:" | |
21 print "\tmeson build" | |
22 print "then:" | |
23 print "\tninja -C build" | |
Wladimir Palant
2017/12/14 10:57:01
Is there a point in having this? It's not like we
hub
2017/12/15 17:44:55
habits. I'll just remove compile.
| |
24 | |
25 exit(1) | |
LEFT | RIGHT |