External, Non-PPA KXStudio Repository
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

28 lines
850B

  1. From f19bf6e040c11ba5535cf141ab7a76af64614a97 Mon Sep 17 00:00:00 2001
  2. From: Fabian Greffrath <fabian@greffrath.com>
  3. Date: Thu, 6 Jun 2013 12:07:58 +0200
  4. Subject: [PATCH] Revert "man/Makefile : Fail more gracefully."
  5. This reverts commit 023f06f6cbc316127ca1a4fb4178ef344a413bd5.
  6. ---
  7. man/Makefile.am | 6 ++----
  8. 1 file changed, 2 insertions(+), 4 deletions(-)
  9. --- a/man/Makefile.am
  10. +++ b/man/Makefile.am
  11. @@ -18,12 +18,10 @@
  12. if FLaC__HAS_DOCBOOK_TO_MAN
  13. flac.1: flac.sgml
  14. - docbook-to-man $? > $@
  15. - (docbook2man $? && mv FLAC.1 $@)
  16. + docbook-to-man $? > $@ || (docbook2man $? && mv FLAC.1 $@)
  17. metaflac.1: metaflac.sgml
  18. - docbook-to-man $? > $@
  19. - (docbook2man $? && mv METAFLAC.1 $@)
  20. + docbook-to-man $? > $@ || (docbook2man $? && mv METAFLAC.1 $@)
  21. else
  22. flac.1:
  23. echo "*** Warning: docbook-to-man not found; man pages will not be built."