summaryrefslogtreecommitdiff
path: root/bootstrap/bootstrap
diff options
context:
space:
mode:
authorschmonz <schmonz@pkgsrc.org>2022-02-08 19:18:07 +0000
committerschmonz <schmonz@pkgsrc.org>2022-02-08 19:18:07 +0000
commitbf74aab305f97e82de1010b4a1c2c04f704578e9 (patch)
tree015f46cae3ef75dd85762a3f7f8a7a342c3404c4 /bootstrap/bootstrap
parent9c33c7307993b976e1fc03a299dad4001d9e962a (diff)
downloadpkgsrc-bf74aab305f97e82de1010b4a1c2c04f704578e9.tar.gz
p.spek@tyil.nl had specifically said to _single_-quote the output of
extra_libarchive_depends(). Oops. Now that the problem has bitten me (on Manjaro ARM), I can attest that single-quoting fixes it. Sorry, tyil, and thanks again!
Diffstat (limited to 'bootstrap/bootstrap')
-rwxr-xr-xbootstrap/bootstrap4
1 files changed, 2 insertions, 2 deletions
diff --git a/bootstrap/bootstrap b/bootstrap/bootstrap
index a326e159cee..4d2d10aa860 100755
--- a/bootstrap/bootstrap
+++ b/bootstrap/bootstrap
@@ -1,6 +1,6 @@
#! /bin/sh
-# $NetBSD: bootstrap,v 1.306 2021/12/28 10:13:01 nia Exp $
+# $NetBSD: bootstrap,v 1.307 2022/02/08 19:18:07 schmonz Exp $
#
# Copyright (c) 2001-2011 Alistair Crooks <agc@NetBSD.org>
# All rights reserved.
@@ -1316,7 +1316,7 @@ LIBS='$LIBS -lnbcompat' $shprog ./configure $configure_quiet_flags -C \
--with-pkgdbdir=$pkgdbdir --infodir=$infodir \
--mandir=$mandir $pkg_install_args && \
STATIC_LIBARCHIVE=$wrkdir/libarchive/.libs/libarchive.a \
-STATIC_LIBARCHIVE_LDADD="`extra_libarchive_depends`" \
+STATIC_LIBARCHIVE_LDADD='`extra_libarchive_depends`' \
PKGSRC_MACHINE_ARCH="$machine_arch" $bmake $make_quiet_flags -j$make_jobs)"
run_cmd "$install_sh -c -o $user -g $group -m 755 $wrkdir/pkg_install/add/pkg_add $wrkdir/sbin/pkg_add"
run_cmd "$install_sh -c -o $user -g $group -m 755 $wrkdir/pkg_install/admin/pkg_admin $wrkdir/sbin/pkg_admin"