summaryrefslogtreecommitdiff
path: root/scripts/check-config
blob: 3949869b3a3be0fa05fdb2a99b5c0a6ba74af76c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/usr/bin/env python

import sys
import os

import defaults


print("Checking build configuration")

if not os.path.exists(defaults.BUILD_CONFIG):
    print("Build config does not exist")
    print("Please run the ./configure script and try again")
    sys.exit(1)