Better handling of installed packages not in ports INDEX.

ok espie@
This commit is contained in:
form 2001-03-07 03:41:10 +00:00
parent 8cd038daad
commit 30d4d0aba2

View File

@ -1,5 +1,5 @@
#!/bin/sh
# $OpenBSD: out-of-date,v 1.3 1999/09/26 14:00:53 espie Exp $
# $OpenBSD: out-of-date,v 1.4 2001/03/07 03:41:10 form Exp $
# Copyright (c) 1999
# Marc Espie. All rights reserved.
# Redistribution and use in source and binary forms, with or without
@ -53,7 +53,11 @@ do
done
echo ""
else
echo "Update $fullname to $newname"
if [ -n "$newname" ]; then
echo "Update $fullname to $newname"
else
echo "$fullname not in INDEX"
fi
fi
}
done