blob: 1d3ec0a2622da6e95646efda3412726316f68e62 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#!/bin/sh -e
test -d compile || ( echo 'Wrong working directory.'; exit 1 )
here=`env - PATH=$PATH pwd`
( echo ucspi-ssl-`head -1 package/version`
echo $here
if test -r compile/sysdeps
then
cat compile/sysdeps
fi
) | mail feh@fehcom.de
|