Avoid unnecessary use of basename(1). From Jukka Salmi a long, long time

ago on a tech-kern far, far away.
This commit is contained in:
dholland 2016-04-23 21:24:31 +00:00
parent d4f032a2ca
commit 796a3ac327
1 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,6 @@
#!/bin/sh
#
# $NetBSD: sysdb,v 1.24 2012/06/03 21:42:45 joerg Exp $
# $NetBSD: sysdb,v 1.25 2016/04/23 21:24:31 dholland Exp $
#
# PROVIDE: sysdb
@ -44,7 +44,7 @@ check_file()
return
fi
if [ \( ! -f "$db" \) -o \( "$src" -nt "$db" \) ]; then
$echo -n "$comma$(basename "$src")"
$echo -n "$comma${src##*/}"
comma=", "
"$@"
fi