parent
9929e0efac
commit
8cc89e468d
4 changed files with 32 additions and 3 deletions
@ -0,0 +1,14 @@ |
|||||||
|
#!/usr/bin/env python3 |
||||||
|
|
||||||
|
import sys, os |
||||||
|
from pathlib import Path |
||||||
|
|
||||||
|
if len(sys.argv) != 2: |
||||||
|
print("Wrong amount of parameters.") |
||||||
|
|
||||||
|
build_dir = Path(os.environ['MESON_BUILD_ROOT']) |
||||||
|
subdir = Path(os.environ['MESON_SUBDIR']) |
||||||
|
outputf = Path(sys.argv[1]) |
||||||
|
|
||||||
|
with outputf.open('w') as ofile: |
||||||
|
ofile.write("#define ZERO_RESULT 0\n") |
@ -1,3 +1,4 @@ |
|||||||
usr/share/appdir/config2.h |
usr/share/appdir/config2.h |
||||||
|
usr/share/appdir/config2b.h |
||||||
usr/share/appdireh/config2-1.h |
usr/share/appdireh/config2-1.h |
||||||
usr/share/appdirok/config2-2.h |
usr/share/appdirok/config2-2.h |
||||||
|
Loading…
Reference in new issue