blob: ef2f2cbaaa77c9a6f958ff7e5db44d43de15fc9a (
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 sqmail-`head -1 package/version`
echo $here
if test -r compile/sysdeps
then
cat compile/sysdeps
fi
) | mail sqmail@fehcom.de
|