diff options
author | Romain Forlot <romain.forlot@iot.bzh> | 2017-06-28 16:41:56 +0200 |
---|---|---|
committer | Romain Forlot <romain.forlot@iot.bzh> | 2018-10-15 18:22:47 +0200 |
commit | 6acadd6d5dd5953d44825046add8bb570cf67c51 (patch) | |
tree | e16b8dd77c4122fa47154c1fab3beeb115485cdc /autobuild/agl/autobuild.in | |
parent | 5e928700f46eec4198eefbd09312b201180a8135 (diff) |
Autobuild scripts directory execution proof
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>
Diffstat (limited to 'autobuild/agl/autobuild.in')
-rwxr-xr-x | autobuild/agl/autobuild.in | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/autobuild/agl/autobuild.in b/autobuild/agl/autobuild.in index dd341c4..dc3bdec 100755 --- a/autobuild/agl/autobuild.in +++ b/autobuild/agl/autobuild.in @@ -14,10 +14,8 @@ # 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 |