summaryrefslogtreecommitdiff
path: root/build.sh
diff options
context:
space:
mode:
authorchristos <christos@NetBSD.org>2021-05-27 21:03:26 +0000
committerchristos <christos@NetBSD.org>2021-05-27 21:03:26 +0000
commitbb5973fd827c0f209c71c2c2a7c7cd085fe40d9e (patch)
tree95bd3c9e4def467e038dcaf3ce4fcfb5e0b2194d /build.sh
parent146173ae5e3915b4ae1c568fe9dee07bc9122919 (diff)
kre@ does not like the subshell :-)
Diffstat (limited to 'build.sh')
-rwxr-xr-xbuild.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/build.sh b/build.sh
index a95414a4101..26ec5590b9e 100755
--- a/build.sh
+++ b/build.sh
@@ -1,5 +1,5 @@
#! /usr/bin/env sh
-# $NetBSD: build.sh,v 1.351 2021/05/26 21:58:58 christos Exp $
+# $NetBSD: build.sh,v 1.352 2021/05/27 21:03:26 christos Exp $
#
# Copyright (c) 2001-2011 The NetBSD Foundation, Inc.
# All rights reserved.
@@ -1973,7 +1973,7 @@ createmakewrapper()
eval cat <<EOF ${makewrapout}
#! ${HOST_SH}
# Set proper variables to allow easy "make" building of a NetBSD subtree.
-# Generated from: \$NetBSD: build.sh,v 1.351 2021/05/26 21:58:58 christos Exp $
+# Generated from: \$NetBSD: build.sh,v 1.352 2021/05/27 21:03:26 christos Exp $
# with these arguments: ${_args}
#
@@ -2301,7 +2301,7 @@ dorump()
repro_date() {
# try the bsd date fail back the the linux one
- (date -u -r "$1" 2> /dev/null) || date -u -d "@$1"
+ date -u -r "$1" 2> /dev/null || date -u -d "@$1"
}
setup_mkrepro()