From 30d4d0aba27c3edb4a04772ee360bd8ea0d956f3 Mon Sep 17 00:00:00 2001 From: form Date: Wed, 7 Mar 2001 03:41:10 +0000 Subject: [PATCH] Better handling of installed packages not in ports INDEX. ok espie@ --- infrastructure/build/out-of-date | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/infrastructure/build/out-of-date b/infrastructure/build/out-of-date index 4236109fe83..af2b55d9ff4 100755 --- a/infrastructure/build/out-of-date +++ b/infrastructure/build/out-of-date @@ -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