Autobuild scripts directory execution proof
authorRomain Forlot <romain.forlot@iot.bzh>
Wed, 28 Jun 2017 14:41:56 +0000 (16:41 +0200)
committerRomain Forlot <romain.forlot@iot.bzh>
Wed, 28 Jun 2017 16:10:51 +0000 (18:10 +0200)
autobuild scripts can be executed from anywhere we should
always have the build directory at the project root path.

Change-Id: I4b4be077c4ea986e054deb21f0b8a07d2db5e131
Signed-off-by: Romain Forlot <romain.forlot@iot.bzh>
autobuild/agl/autobuild.in
autobuild/linux/autobuild.in

index dd341c4..dc3bdec 100755 (executable)
 # See the License for the specific language governing permissions and
 # limitations under the License.
 
-BUILD_DIR   := @PROJECT_BINARY_DIR@
-PACKAGING_DIR := @PROJECT_PKG_ENTRY_POINT@
-
-VPATH = etc:$(PACKAGING_DIR):$(PACKAGING_DIR)/etc:$(BUILD_DIR)
+THISFILE  := $(lastword $(MAKEFILE_LIST))
+BUILD_DIR := $(abspath $(dir $(THISFILE)/../../../../..)/build)
 
 .PHONY: all clean distclean configure build package
 
index c4b5553..85b0323 100755 (executable)
 # See the License for the specific language governing permissions and
 # limitations under the License.
 
-BUILD_DIR   := @PROJECT_BINARY_DIR@
-PACKAGING_DIR := @PROJECT_PKG_ENTRY_POINT@
-
-VPATH = etc:$(PACKAGING_DIR):$(PACKAGING_DIR)/etc:$(BUILD_DIR)
+THISFILE  := $(lastword $(MAKEFILE_LIST))
+BUILD_DIR := $(abspath $(dir $(THISFILE)/../../../../..)/build)
 
 .PHONY: all clean distclean configure build package
 
@@ -42,7 +40,6 @@ package: build
        @mkdir -p ${BUILD_DIR}/$@/data
        @mkdir -p ${DEST}
        @cmake --build ${BUILD_DIR} --target packaging
-       @cmake --build ${BUILD_DIR} --target all
 
 ${BUILD_DIR}/Makefile:
        @[ -d ${BUILD_DIR} ] || mkdir -p ${BUILD_DIR}