Skip to content

Commit

Permalink
Makefile: Detect VMs without dxvk_crosscc chroot
Browse files Browse the repository at this point in the history
  • Loading branch information
aeikum committed Jun 6, 2019
1 parent 70c8aef commit d76152b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ clean: vagrant
vagrant ssh -c 'rm -rf $(BUILD_DIR)/'

configure: vagrant
vagrant ssh -c 'if [ ! -e $(BUILD_DIR)/Makefile ]; then mkdir -p $(BUILD_DIR); (cd $(BUILD_DIR) && $(CONFIGURE_CMD)); fi'
@vagrant ssh -c 'if [ ! -e $(BUILD_DIR)/Makefile ]; then if ! schroot -i -c dxvk_crosscc >/dev/null 2>&1; then echo !!!! You must run \"vagrant provision\" !!!!; exit 1; fi; mkdir -p $(BUILD_DIR); (cd $(BUILD_DIR) && $(CONFIGURE_CMD)); fi'

proton: configure
vagrant ssh -c 'make -C $(BUILD_DIR)/ dist'
Expand Down

0 comments on commit d76152b

Please sign in to comment.