diff options
author | Waldemar Brodkorb <wbx@uclibc-ng.org> | 2016-09-29 14:45:12 +0200 |
---|---|---|
committer | Waldemar Brodkorb <wbx@uclibc-ng.org> | 2016-09-29 14:46:19 +0200 |
commit | 878135cbca2982f209adb7ed1de483ce4c8f0554 (patch) | |
tree | 6825550c7e3ee76e452a35dc0051a54732bbdb44 /package/jack2 | |
parent | 170fea6b6892e6263914724cbaa2b29df26f400c (diff) |
jack2: add needed HOST_PATH
Diffstat (limited to 'package/jack2')
-rw-r--r-- | package/jack2/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/package/jack2/Makefile b/package/jack2/Makefile index ecb5304d2..2701eee12 100644 --- a/package/jack2/Makefile +++ b/package/jack2/Makefile @@ -24,13 +24,13 @@ BUILD_STYLE:= manual INSTALL_STYLE:= manual do-configure: - cd $(WRKBUILD) && ./waf configure --alsa --prefix=/usr + cd $(WRKBUILD) && PATH='$(HOST_PATH)' ./waf configure --alsa --prefix=/usr do-build: - cd $(WRKBUILD) && ./waf build + cd $(WRKBUILD) && PATH='$(HOST_PATH)' ./waf build do-install: - cd $(WRKBUILD) && ./waf install --destdir=$(WRKINST) + cd $(WRKBUILD) && PATH='$(HOST_PATH)' ./waf install --destdir=$(WRKINST) jack2-install: $(INSTALL_DIR) $(IDIR_JACK2)/usr/bin |