blob: bea1a02a66df9599f69816d6783ff8ac55608b41 (
plain)
1
2
3
4
5
6
7
8
|
#!/bin/bash
# Tweak the Makefile to link against the installed liblzma for the tests
sed 's@..top_builddir..src.liblzma.liblzma.la@-llzma@' -i tests/Makefile.am
./configure
exec make check
|