mirror of https://github.com/GNOME/gimp.git
15 lines
164 B
Bash
15 lines
164 B
Bash
![]() |
#!/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
|