autoconf/tests/runstatedir/run
Honza Horak 8329b02557 Add runstatedir test
Related: RHBZ#1831941
2021-02-04 16:55:16 +01:00

17 lines
327 B
Bash
Executable File

#!/bin/bash
# Taken from http://www.idryman.org/blog/2016/03/10/autoconf-tutorial-1/
set -xe
autoreconf --verbose --install --force
./configure --help
./configure --runstatedir=/var/mytmp
make
./hello
./hello | grep 'hello world!'
./hello | grep 'runstatedir: /var/mytmp'
make dist
echo "Test for --runstatedir succeeded."