source: trunk/minix/commands/scripts/binpackages.sh@ 9

Last change on this file since 9 was 9, checked in by Mattia Monga, 13 years ago

Minix 3.1.2a

File size: 171 bytes
Line 
1#!/bin/sh
2
3pdir=Packages
4
5for d in */build
6do
7 dir="`echo $d | sed 's/\/build$//'`"
8 if [ ! -f $pdir/$dir.tar.gz ]
9 then
10 echo " * $dir"
11 binpackage $dir $pdir
12 fi
13done
Note: See TracBrowser for help on using the repository browser.