add a -print to the find statement to avoid problems on solaris where
each file/directory/link is printed twice. Fixes PR23270
This commit is contained in:
parent
b1210ba8ee
commit
4134c82db7
|
@ -1,6 +1,6 @@
|
|||
#! /bin/sh --
|
||||
#
|
||||
# $NetBSD: checkflist,v 1.22 2003/09/30 06:23:43 lukem Exp $
|
||||
# $NetBSD: checkflist,v 1.23 2003/10/26 14:21:49 dmcmahill Exp $
|
||||
#
|
||||
# Verify output of makeflist against contents of $DESTDIR.
|
||||
|
||||
|
@ -87,7 +87,7 @@ sh makeflist $xargs $dargs > $SDIR/flist
|
|||
|
||||
(
|
||||
cd $DESTDIR
|
||||
find $origin \( -type d -o -type f -o -type l \)
|
||||
find $origin \( -type d -o -type f -o -type l \) -print
|
||||
) | (
|
||||
while read line; do
|
||||
case "$line" in
|
||||
|
|
Loading…
Reference in New Issue