File: build_without_manpage.patch

package info (click to toggle)
wmcdplay 1.0beta1-13
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 640 kB
  • ctags: 831
  • sloc: cpp: 1,487; sh: 9; makefile: 6
file content (19 lines) | stat: -rw-r--r-- 619 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
Description: Build without manpage.
 Switch from using ComplexProgramTarget() to ComplexProgramTargetNoMan() in
 IMakefile.  Otherwise, build fails with:
   "*** No rule to make target `wmcdplay.man', needed by `wmcdplay._man'."
 .
 Patch created for 1.0beta1-8.  Converted to quilt for 1.0beta-12.
Bug-Debian: http://bugs.debian.org/123732
Author: Anthony Wong <ypwong@debian.org>
Author: Doug Torrance <dtorrance@monmouthcollege.edu>
Last-Update: 2014-07-29

--- a/Imakefile
+++ b/Imakefile
@@ -5,4 +5,4 @@
 SRCS = wmcdplay.cc
 OBJS = wmcdplay.o
 
-ComplexProgramTarget(wmcdplay)
+ComplexProgramTargetNoMan(wmcdplay)