1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
|
Author: Nicolas Boulenguez <nicolas@debian.org>
Description: Do not attempt to build or clean removed non-DFSG documentation.
Forwarded: not-needed
--- a/Makefile.in
+++ b/Makefile.in
@@ -165,7 +165,6 @@
distclean: clean mostlyclean-generic
-${RM} config.cache config.log config.status
- -$(MAKE) -C $(doc_dir) distclean
-$(MAKE) -C po distclean
mostlyclean: mostlyclean-generic
--- a/configure.in
+++ b/configure.in
@@ -36,7 +36,7 @@
libdir='${prefix}/lib'
-AC_OUTPUT(Makefile shared.gpr po/Makefile docs/gtkada_rm/html/static/index.html)
+AC_OUTPUT(Makefile shared.gpr po/Makefile)
AC_MSG_NOTICE([--------- Summary for Gtkada $PACKAGE_VERSION -----------------])
AC_MSG_NOTICE(AC_HELP_STRING(
|