Skip to content

Commit

Permalink
Check Perl integrity with -e
Browse files Browse the repository at this point in the history
  • Loading branch information
hongjinghao committed Jul 17, 2024
1 parent afff10b commit 023d6f0
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions Configure
Original file line number Diff line number Diff line change
Expand Up @@ -2135,10 +2135,14 @@ if test -f "$rsrc/MANIFEST"; then
rm -f missing
tmppwd=`pwd`
for filelist in x??; do
(cd "$rsrc"; ls `cat "$tmppwd/$filelist"` \
>/dev/null 2>>"$tmppwd/missing")
for file in `cat "$tmppwd/$filelist"`; do
if [ ! -e "$rsrc/$file" ]; then
echo "$file" >> "$tmppwd/missing"
fi
done
done
if test -s missing; then
echo "The following files do not exist:" >&4
cat missing >&4
cat >&4 <<'EOM'

Expand Down

0 comments on commit 023d6f0

Please sign in to comment.