Browse Source

Build script changes

Need to set PATH to include util/, and also we should create amd64/bin
John Floren 8 years ago
parent
commit
5d7e766691
2 changed files with 6 additions and 0 deletions
  1. 3 0
      BUILD
  2. 3 0
      BUILD.conf

+ 3 - 0
BUILD

@@ -127,6 +127,9 @@ then
 	show_help
 	exit 1
 else
+	# We need our binary dir
+	mkdir -p $BIN_DIR
+
 	#BUILD_DEBUG=
 	#Until we have a stable kernel, debug mode is the default.
 	BUILD_DEBUG="$CFLAGS_DEBUG"

+ 3 - 0
BUILD.conf

@@ -31,3 +31,6 @@ NM=nm
 DATE=$(date +%s)
 EXTKERNDATE="-DKERNDATE=${DATE}"
 KERNEL_CONF="k8cpu"
+
+### PATH ###
+PATH=$PATH:$UTIL_DIR