Fix paths for out-of-tree builds, found by make distcheck
Signed-off-by: Joachim Nilsson <troglobit@gmail.com>
This commit is contained in:
parent
e202196152
commit
512aaa1afc
@ -5,9 +5,9 @@ TEST_EXTENSIONS = .sh
|
|||||||
|
|
||||||
check_PROGRAMS = api
|
check_PROGRAMS = api
|
||||||
api_SOURCES = api.c
|
api_SOURCES = api.c
|
||||||
api_CFLAGS = -I../src
|
api_CFLAGS = -I$(srcdir)/../src
|
||||||
api_LDFLAGS = -static
|
api_LDFLAGS = -static
|
||||||
api_LDADD = -L../src ../src/libsyslog.la
|
api_LDADD = ../src/libsyslog.la
|
||||||
|
|
||||||
TESTS = start.sh
|
TESTS = start.sh
|
||||||
TESTS += local.sh
|
TESTS += local.sh
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
set -e
|
set -e
|
||||||
. ./test.rc
|
. ${srcdir}/test.rc
|
||||||
|
|
||||||
export MSG="no-openlog-apitest"
|
export MSG="no-openlog-apitest"
|
||||||
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
. ./test.rc
|
. ${srcdir}/test.rc
|
||||||
|
|
||||||
MSG="foobar"
|
MSG="foobar"
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
set -ex
|
set -ex
|
||||||
. ./test.rc
|
. ${srcdir}/test.rc
|
||||||
|
|
||||||
MSG="kilroy"
|
MSG="kilroy"
|
||||||
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
. ./test.rc
|
. ${srcdir}/test.rc
|
||||||
|
|
||||||
if [ x"${srcdir}" = x ]; then
|
if [ x"${srcdir}" = x ]; then
|
||||||
srcdir=.
|
srcdir=.
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
. ./test.rc
|
. ${srcdir}/test.rc
|
||||||
|
|
||||||
if [ -e ${PID} ]; then
|
if [ -e ${PID} ]; then
|
||||||
echo "Killing `cat ${PID}` ..."
|
echo "Killing `cat ${PID}` ..."
|
||||||
|
Loading…
Reference in New Issue
Block a user