mirror of
https://git.proxmox.com/git/libtpms
synced 2025-08-17 04:28:29 +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
|