33ff088a60
Derive the file list from the Makefile.am template itself (DRY), ensure manpage is packaged with the final tarball.
8 lines
91 B
Bash
Executable File
8 lines
91 B
Bash
Executable File
#!/bin/sh
|
|
set -e
|
|
|
|
rm -f man/*.1 man/*.3
|
|
./autogen.sh
|
|
./configure --enable-libtls
|
|
make dist
|