From 8c46cfac74318fefa9528d407f77a377b56a5c0c Mon Sep 17 00:00:00 2001 From: christos Date: Fri, 14 Jun 2019 01:54:16 +0000 Subject: [PATCH] make the script MI again (same across all archs) --- usr.sbin/postinstall/Makefile | 6 +++--- usr.sbin/postinstall/postinstall.in | 23 ++++++++++++++++++----- 2 files changed, 21 insertions(+), 8 deletions(-) diff --git a/usr.sbin/postinstall/Makefile b/usr.sbin/postinstall/Makefile index e9e320f506ae..b5a8a8645eb2 100644 --- a/usr.sbin/postinstall/Makefile +++ b/usr.sbin/postinstall/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.2 2019/06/14 01:06:33 christos Exp $ +# $NetBSD: Makefile,v 1.3 2019/06/14 01:54:16 christos Exp $ .include @@ -9,8 +9,8 @@ FILESDIR= /usr/sbin FILESMODE= ${BINMODE} FILESBUILD= yes -ARCHSUBDIRS != ${MAKE} -f ${NETBSDSRCDIR}/compat/archdirs.mk \ - ACTIVE_CC=clang -V ARCHDIR_SUBDIR | ${TOOL_SED} -e 's@[a-z0-9_]*/@@g' +ARCHSUBDIRS != ${TOOL_SED} -n '/ARCHDIR_SUBDIR/s/[[:space:]]//gp' \ + ${NETBSDSRCDIR}/compat/archdirs.mk .SUFFIXES: .in .in: diff --git a/usr.sbin/postinstall/postinstall.in b/usr.sbin/postinstall/postinstall.in index 1fce04827501..f70a5ce2717a 100755 --- a/usr.sbin/postinstall/postinstall.in +++ b/usr.sbin/postinstall/postinstall.in @@ -1,6 +1,6 @@ #!/bin/sh # -# $NetBSD: postinstall.in,v 1.1 2019/06/14 01:06:33 christos Exp $ +# $NetBSD: postinstall.in,v 1.2 2019/06/14 01:54:16 christos Exp $ # # Copyright (c) 2002-2015 The NetBSD Foundation, Inc. # All rights reserved. @@ -2187,11 +2187,17 @@ do_obsolete_stand() return ${failed} } -getarchsubdirs() { +listarchsubdirs() { if ! $SOURCEMODE; then echo "@ARCHSUBDIRS@" - return + else + ${SED} -n -e '/ARCHDIR_SUBDIR/s/[[:space:]]//gp' \ + ${SRC_DIR}/compat/archdirs.mk fi +} + + +getarchsubdirs() { local m case ${MACHINE_ARCH} in *arm*|*aarch64*) m=arm;; @@ -2199,12 +2205,14 @@ getarchsubdirs() { *) m=${MACHINE_ARCH};; esac - ${SED} -n -e "/[=[:space:]]${m}/s@.*[=[:space:]]${m}/\(.*\)@\1@p" \ - ${SRC_DIR}/compat/archdirs.mk | ${SORT} -u + for i in $(listarchsubdirs); do + echo $i + done | ${SORT} -u | ${SED} -n -e "/=${m}/s@.*=${m}/\(.*\)@\1@p" } getcompatlibdirs() { for i in $(getarchsubdirs); do + echo $i 1>&2 if [ -d /usr/lib/$i ]; then echo /usr/lib/$i fi @@ -2539,6 +2547,11 @@ _Fix_me_ esac } +if [ -n "$POSTINSTALL_FUNCTION" ]; then + eval "$POSTINSTALL_FUNCTION" + exit 0 +fi + # defaults # PROGNAME="${0##*/}"