Commit 5cdf62b9 5cdf62b95db54f1db42b73a620977dd8d3ffaa13 by Sergey Poznyakoff

A hack to force automake to install COPYING file.

1 parent 63275556
#!/bin/sh
# This trick forces automake to install COPYING
trap "mv $$.COPYING.LIB COPYING.LIB" 1 2 3 15
mv COPYING.LIB $$.COPYING.LIB
autoreconf -f -i -s
mv $$.COPYING.LIB COPYING.LIB
\ No newline at end of file
......