summaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authorTavian Barnes <tavianator@tavianator.com>2024-08-23 14:50:22 -0400
committerTavian Barnes <tavianator@tavianator.com>2024-08-23 15:23:03 -0400
commit07ae98906dbb0caaac2f758d72e88dd0975b2a81 (patch)
treeec56818370e564383803fc017176fcf546c3320a /configure
parente38a17f0a4e6cd7eaf9418fdb8669ae6c42d55ea (diff)
downloadbfs-07ae98906dbb0caaac2f758d72e88dd0975b2a81.tar.xz
build: Fix ./configure --help
Fixes: 49a5d48 ("configure: Fix VAR=value before --option")
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure4
1 files changed, 2 insertions, 2 deletions
diff --git a/configure b/configure
index 8fb0cc2..ef6f58c 100755
--- a/configure
+++ b/configure
@@ -13,7 +13,7 @@ help() {
Usage:
\$ $0 [--enable-*|--disable-*] [--with-*|--without-*] [CC=...] [...]
- \$ $MAKE $j
+ \$ $MAKE -j$(nproc)
Variables set in the environment or on the command line will be picked up:
@@ -61,7 +61,7 @@ Packaging:
This script is a thin wrapper around a makefile-based configuration system.
Any other arguments will be passed directly to the $MAKE invocation, e.g.
- \$ $0 $j V=1
+ \$ $0 -j$(nproc) V=1
EOF
}