mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-16 16:18:22 +00:00
952853eb23
This part was forgotten in 6f16814d3b
.
14 lines
201 B
Bash
Executable File
14 lines
201 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`
|
|
if ! ./check_layout ${dn}/${bn}; then
|
|
retval=1
|
|
fi
|
|
done
|
|
exit $retval
|