=================================================================== RCS file: /cvsrepo/anoncvs/cvs/ports/Attic/license-check,v retrieving revision 1.3 retrieving revision 1.4 diff -c -r1.3 -r1.4 *** ports/Attic/license-check 1998/09/24 04:27:04 1.3 --- ports/Attic/license-check 1998/09/25 02:34:31 1.4 *************** *** 1,6 **** #! /bin/sh # ! # $OpenBSD: license-check,v 1.3 1998/09/24 04:27:04 marc Exp $ # # This script verifies that all files in a given directory are # mentioned in the ports LICENSE file as Distribution allowed. --- 1,6 ---- #! /bin/sh # ! # $OpenBSD: license-check,v 1.4 1998/09/25 02:34:31 marc Exp $ # # This script verifies that all files in a given directory are # mentioned in the ports LICENSE file as Distribution allowed. *************** *** 95,100 **** --- 95,110 ---- header = 0 for ( f in good_files ) { if ( good_files[ f ] == 0 ) { + if ( ! header ) { + print "You are missing the following files:" + print + header = 1 + } + print f + } + } + for ( f in unk_files ) { + if ( unk_files[ f ] == 0 ) { if ( ! header ) { print "You are missing the following files:" print