mirror of
https://github.com/stefanberger/libtpms
synced 2025-08-24 08:47:07 +00:00

Remove config.h.in and create it in bootstrap.h using autoheader. Signed-off-by: Stefan Berger <stefanb@linux.vnet.ibm.com>
8 lines
140 B
Bash
Executable File
8 lines
140 B
Bash
Executable File
#!/bin/sh
|
|
set -x
|
|
libtoolize --force || exit 1
|
|
aclocal || exit 1
|
|
autoheader || exit 1
|
|
automake --add-missing -c || exit 1
|
|
autoconf || exit 1
|