Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/ValveSoftware/Proton.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Eikum <aeikum@codeweavers.com>2019-06-05 19:36:07 +0300
committerAndrew Eikum <aeikum@codeweavers.com>2019-06-06 19:41:28 +0300
commitd76152b8fdb6955f50ef9f896805d083dbbbbd90 (patch)
tree091cbcae8c23595c5b139b83f33c608aa959242a
parent70c8aef27398ab3dbae4b3721c1f65599afcd1f7 (diff)
Makefile: Detect VMs without dxvk_crosscc chrootproton-4.2-6
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index afcc58bb..2dfe82ed 100644
--- a/Makefile
+++ b/Makefile
@@ -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'