NetBSD Problem Report #37123

From martin@duskware.de  Fri Oct 12 22:03:38 2007
Return-Path: <martin@duskware.de>
Received: from mail.netbsd.org (mail.netbsd.org [204.152.190.11])
	by narn.NetBSD.org (Postfix) with ESMTP id 373FA63BA4A
	for <gnats-bugs@gnats.netbsd.org>; Fri, 12 Oct 2007 22:03:38 +0000 (UTC)
Message-Id: <20071012155427.6238B63BA35@narn.NetBSD.org>
Date: Fri, 12 Oct 2007 15:54:27 +0000 (UTC)
From: uli@habel.name
Reply-To: uli@habel.name
To: netbsd-bugs-owner@NetBSD.org
Subject: mk/bulk/do-sandbox-build breakage with "sh"  on Solaris
X-Send-Pr-Version: www-1.0

>Number:         37123
>Category:       pkg
>Synopsis:       mk/bulk/do-sandbox-build breakage with "sh"  on Solaris
>Confidential:   no
>Severity:       serious
>Priority:       medium
>Responsible:    solaris-pkg-people
>State:          closed
>Class:          change-request
>Submitter-Id:   net
>Arrival-Date:   Fri Oct 12 22:05:01 +0000 2007
>Closed-Date:    Sat Feb 15 14:21:28 +0000 2020
>Last-Modified:  Sat Feb 15 14:21:28 +0000 2020
>Originator:     Ulrich Habel
>Release:        Solaris 5.9/sparc
>Organization:
>Environment:
SunOS sun-install 5.9 Generic_122300-07 sun4u sparc SUNW,Sun-Fire-V240
>Description:
The script mk/bulk/do-sandbox-build calls the script "build" with the /bin/sh shell. The command fails to a incompatible sh shell on Solaris.
>How-To-Repeat:
call the script mk/bulk/do-sandbox-build on a Solaris host
>Fix:
I added an opsys detection to the script and set the sh variable to /bin/ksh if the OS is SunOS.

the patch is below:

--- do-sandbox-upload.orig      2007-10-12 16:38:41.000000000 +0200
+++ do-sandbox-upload   2007-10-12 17:08:21.000000000 +0200
@@ -2,12 +2,19 @@
 #      $NetBSD: do-sandbox-upload,v 1.5 2005/07/13 22:07:46 rillig Exp $

 #
-# Script to start a sandbox build
+# Script to upload a sandbox build
 #
 # See pkgsrc/doc/pkgsrc.txt for documentation!
 #

-sh="/bin/sh"
+opsys=`uname -s`
+case "$opsys" in
+    SunOS)
+      sh="/bin/ksh";;
+    *)
+      sh="/bin/sh";;
+esac
+
 upload="mk/bulk/upload"

 chroot /usr/sandbox \

>Release-Note:

>Audit-Trail:

Responsible-Changed-From-To: pkg-manager->solaris-pkg-people
Responsible-Changed-By: rillig@NetBSD.org
Responsible-Changed-When: Sat, 15 Feb 2020 14:20:38 +0000
Responsible-Changed-Why:
It's a Solaris issue.


State-Changed-From-To: open->closed
State-Changed-By: rillig@NetBSD.org
State-Changed-When: Sat, 15 Feb 2020 14:21:28 +0000
State-Changed-Why:
mk/bulk has long been replaced by pbulk.


>Unformatted:

NetBSD Home
NetBSD PR Database Search

(Contact us) $NetBSD: gnats-precook-prs,v 1.4 2018/12/21 14:20:20 maya Exp $
$NetBSD: gnats_config.sh,v 1.9 2014/08/02 14:16:04 spz Exp $
Copyright © 1994-2017 The NetBSD Foundation, Inc. ALL RIGHTS RESERVED.