Skip to content
Snippets Groups Projects
Commit ba91f56b authored by Michael Büsch's avatar Michael Büsch
Browse files

deptest: Check for .config

SVN-Revision: 23810
parent 87fe1d36
No related branches found
No related tags found
No related merge requests found
...@@ -22,6 +22,8 @@ die() ...@@ -22,6 +22,8 @@ die()
[ -f "$BASEDIR/include/toplevel.mk" ] || \ [ -f "$BASEDIR/include/toplevel.mk" ] || \
die "Error: Could not find buildsystem base directory" die "Error: Could not find buildsystem base directory"
[ -f "$BASEDIR/.config" ] || \
die "The buildsystem is not configured. Please run make menuconfig."
cd "$BASEDIR" || die "Failed to enter base directory" cd "$BASEDIR" || die "Failed to enter base directory"
mkdir -p "$STAMP_DIR_SUCCESS" "$STAMP_DIR_FAILED" "$BUILD_DIR" "$BUILD_DIR_HOST" "$LOG_DIR" mkdir -p "$STAMP_DIR_SUCCESS" "$STAMP_DIR_FAILED" "$BUILD_DIR" "$BUILD_DIR_HOST" "$LOG_DIR"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment