1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-25 04:43:33 +00:00
freebsd-ports/cad/pcb/files/patch-configure.ac
Hiroki Sato 0ec8087ea5 Fix build in the NOPORTDOCS=yes case.
Spotted by:	QAT
2010-10-03 13:42:06 +00:00

32 lines
618 B
Plaintext

--- configure.ac.orig 2010-09-30 05:38:34.000000000 +0900
+++ configure.ac 2010-10-03 22:29:55.000000000 +0900
@@ -54,20 +54,28 @@
[
if test "X$enable_doc" = "Xno" ; then
DOC=""
+ EXAMPLE=""
+ TUTORIAL=""
AC_MSG_RESULT([no])
docs_yesno=no
else
DOC=doc
+ EXAMPLE=example
+ TUTORIAL=tutorial
AC_MSG_RESULT([yes])
docs_yesno=yes
fi
],
[
DOC=doc
+EXAMPLE=example
+TUTORIAL=tutorial
AC_MSG_RESULT([yes])
docs_yesno=yes
])
AC_SUBST(DOC)
+AC_SUBST(EXAMPLE)
+AC_SUBST(TUTORIAL)
AC_MSG_CHECKING([if maintainer mode is required])