mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-06 11:23:45 +00:00
1e4700b277
Now it should work with any sh compatible shell
15 lines
213 B
Bash
Executable File
15 lines
213 B
Bash
Executable File
#!/bin/sh
|
|
|
|
retval=0
|
|
for i in ${srcdir}/../lib/layouts/*.layout
|
|
do
|
|
echo Testing $i...
|
|
dn=`dirname $i`
|
|
bn=`basename $i .layout`
|
|
./check_layout ${dn}/${bn}
|
|
if [ $? -ne 0 ]; then
|
|
retval=1
|
|
fi
|
|
done
|
|
exit $retval
|