From 9931e60e1d09edf16904c43a58eb0feb1ace4ffd Mon Sep 17 00:00:00 2001 From: triaxx Date: Mon, 29 Oct 2018 15:16:32 +0000 Subject: Arch Linux does not provide pax anymore https://lists.archlinux.org/pipermail/arch-general/2017-April/043604.html --- bootstrap/bootstrap | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) (limited to 'bootstrap/bootstrap') diff --git a/bootstrap/bootstrap b/bootstrap/bootstrap index 68d5e45765c..1af0efdd7a2 100755 --- a/bootstrap/bootstrap +++ b/bootstrap/bootstrap @@ -1,6 +1,6 @@ #! /bin/sh -# $NetBSD: bootstrap,v 1.253 2018/10/28 18:41:41 sevan Exp $ +# $NetBSD: bootstrap,v 1.254 2018/10/29 15:16:32 triaxx Exp $ # # Copyright (c) 2001-2011 Alistair Crooks # All rights reserved. @@ -718,6 +718,10 @@ Linux) need_awk=no need_sed=no fi + # Arch does not provide pax anymore + if [ -f /etc/arch-release ]; then + need_pax=yes + fi set_opsys=no machine_arch=`uname -m` # Override machine_arch where required. @@ -1353,6 +1357,9 @@ esac case "$need_extras" in yes) build_package "pkgtools/bootstrap-extras";; esac +case "$need_pax" in +yes) build_package "archivers/pax" +esac build_package "pkgtools/pkg_install" etc_mk_conf="$sysconfdir/mk.conf" -- cgit v1.2.3