c86b336769
File locations are prefixed with `$::srcdir' so that `make distcheck' can execute the test suite using a relative path. The current working directory is removed from the test-suite-bash-prompt. Furthermore, no more dynamic creation of files in dir $::srcdir/fixtures since this dir is read-only during `make distcheck'. Instead create dynamic files in $TESTDIR/tmp The test suite uses these "directory" variables tcl bash description ------------ ----------- ------------------------------------ $::srcdir $SRCDIR where `fixtures' reside, relative $::srcdirabs $SRCDIRABS where `fixtures' reside, absolute $::TESTDIR $TESTDIR where `runtest' is invoked, absolute
8 lines
334 B
Plaintext
8 lines
334 B
Plaintext
AC_PREREQ([2.59])
|
|
AC_INIT([bash-completion], [1.99])
|
|
AM_INIT_AUTOMAKE([foreign dist-bzip2 no-dist-gzip -Wall -Werror])
|
|
AC_SUBST(bashcompdir, $sysconfdir/bash_completion.d)
|
|
AC_SUBST(helpersdir, $sysconfdir/bash_completion.d/helpers)
|
|
AC_CONFIG_FILES([Makefile completions/Makefile completions/helpers/Makefile test/Makefile])
|
|
AC_OUTPUT
|