ignore lines beginning with '#'
authorEnrico Scholz <enrico.scholz@informatik.tu-chemnitz.de>
Mon, 16 Feb 2004 19:18:52 +0000 (19:18 +0000)
committerEnrico Scholz <enrico.scholz@informatik.tu-chemnitz.de>
Mon, 16 Feb 2004 19:18:52 +0000 (19:18 +0000)
git-svn-id: http://svn.linux-vserver.org/svn/util-vserver/trunk@908 94cd875c-1c1d-0410-91d2-eb244daf1a30

util-vserver/contrib/make-manifest

index a2c2211..0eb9735 100755 (executable)
@@ -27,5 +27,8 @@ done
 
 cat $data | while read style file; do
     test "$file" || continue
+    case "$style" in
+       (\#*)   continue;;
+    esac
     echo "$file" >>$name-$style.list
 done