artulab
projects
/
openbsd
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
26432af
)
check_sym: adjust logic not to exit 1 in the default dynamic mode
author
tb
<tb@openbsd.org>
Tue, 3 Sep 2024 08:49:16 +0000
(08:49 +0000)
committer
tb
<tb@openbsd.org>
Tue, 3 Sep 2024 08:49:16 +0000
(08:49 +0000)
ok guenther
lib/check_sym
patch
|
blob
|
history
diff --git
a/lib/check_sym
b/lib/check_sym
index
8333b96
..
68e268a
100755
(executable)
--- a/
lib/check_sym
+++ b/
lib/check_sym
@@
-1,5
+1,5
@@
#!/bin/ksh
-# $OpenBSD: check_sym,v 1.1
2 2024/08/15 01:25:13 guenther
Exp $
+# $OpenBSD: check_sym,v 1.1
3 2024/09/03 08:49:16 tb
Exp $
#
# Copyright (c) 2016,2019,2022 Philip Guenther <guenther@openbsd.org>
#
@@
-425,7
+425,7
@@
done
{
echo "$old --> $new"
-
$dynamic &&
dynamic_output
-
$static &&
static_output
+
! $dynamic ||
dynamic_output
+
! $static ||
static_output
}