From 86c6a4bdf261845348b0452ef1099d82e134c2a0 Mon Sep 17 00:00:00 2001 From: Daniil Baturin Date: Thu, 17 Dec 2015 01:25:46 -0500 Subject: Add initial drafts of the build scripts. --- scripts/check-config | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100755 scripts/check-config (limited to 'scripts/check-config') diff --git a/scripts/check-config b/scripts/check-config new file mode 100755 index 00000000..3949869b --- /dev/null +++ b/scripts/check-config @@ -0,0 +1,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) -- cgit v1.2.3