gimp/help/make-help-stubs.sh

15 lines
164 B
Bash
Raw Normal View History

1999-10-04 16:40:33 +08:00
#!/bin/sh
path=`pwd`
dirs=`find C -type d | grep -v CVS`
for i in $dirs
do
cd $i
PATH=$path:$PATH makefile-am.sh
PATH=$path:$PATH dir-template.sh
cd $path
done