summaryrefslogtreecommitdiffstats
path: root/ipatests/man/configure.ac
diff options
context:
space:
mode:
authorPetr Viktorin <pviktori@redhat.com>2013-08-13 18:32:36 +0200
committerPetr Viktorin <pviktori@redhat.com>2013-08-29 15:18:34 +0200
commitf742520760d1b146cd3c5e79a6c86a024570ff6a (patch)
treeefa16144d3c699bce241725409bbecf72bdaed31 /ipatests/man/configure.ac
parenta3d489443c85629aa176df048c6b3505a7ee4586 (diff)
downloadfreeipa-f742520760d1b146cd3c5e79a6c86a024570ff6a.tar.gz
freeipa-f742520760d1b146cd3c5e79a6c86a024570ff6a.tar.xz
freeipa-f742520760d1b146cd3c5e79a6c86a024570ff6a.zip
Add man pages for testing tools
Add man pages for ipa-run-tests, ipa-test-task, and ipa-test-config. https://fedorahosted.org/freeipa/ticket/3855 (part 5)
Diffstat (limited to 'ipatests/man/configure.ac')
-rw-r--r--ipatests/man/configure.ac24
1 files changed, 24 insertions, 0 deletions
diff --git a/ipatests/man/configure.ac b/ipatests/man/configure.ac
new file mode 100644
index 000000000..8ddb93abb
--- /dev/null
+++ b/ipatests/man/configure.ac
@@ -0,0 +1,24 @@
+AC_PREREQ(2.59)
+m4_include(../../version.m4)
+AC_INIT([ipa-tests],
+ IPA_VERSION,
+ [https://hosted.fedoraproject.org/projects/freeipa/newticket])
+
+AM_INIT_AUTOMAKE([foreign])
+
+AM_MAINTAINER_MODE
+
+AC_SUBST(VERSION)
+AC_SUBST([INSTALL_DATA], ['$(INSTALL) -m 644 -p'])
+
+AC_PROG_MKDIR_P
+AC_PROG_AWK
+AC_PROG_SED
+
+# Files
+
+AC_CONFIG_FILES([
+ Makefile
+])
+
+AC_OUTPUT