From 960ff85d31ccb937a15e35d82b01844e08e7de04 Mon Sep 17 00:00:00 2001 From: Doug Coleman Date: Sat, 9 Feb 2019 18:48:42 +0000 Subject: [PATCH] build.sh: Add a compile option to compile only. Invoking ``gmake`` only should work, but it uses g++ on OpenBSD instead of clang++. We should fix this. --- build.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/build.sh b/build.sh index ef3adb9cee..84d8b22aa4 100755 --- a/build.sh +++ b/build.sh @@ -700,7 +700,7 @@ install_deps_dnf() { } install_deps_pkg() { - sudo pkg install --yes git gcc rlwrap ripgrep curl gmake + sudo pkg install --yes git gcc rlwrap ripgrep curl gmake x11-toolkits/gtk30 x11-toolkits/gtkglext pango cairo } @@ -762,6 +762,7 @@ case "$1" in quick-update) update; refresh_image ;; update) update; download_and_bootstrap ;; latest) update; download_and_bootstrap ;; + compile) find_build_info; make_factor ;; bootstrap) get_config_info; bootstrap ;; net-bootstrap) net_bootstrap_no_pull ;; make-target) FIND_MAKE_TARGET=true; ECHO=false; find_build_info; exit_script ;; -- 2.34.1