Annotation of /trunk/libexif/patches/libexif-0.6.13-doxygen.patch
Parent Directory | Revision Log
Revision 144 -
(hide annotations)
(download)
Tue May 8 20:06:05 2007 UTC (17 years, 5 months ago) by niro
File size: 1631 byte(s)
Tue May 8 20:06:05 2007 UTC (17 years, 5 months ago) by niro
File size: 1631 byte(s)
-import
1 | niro | 144 | Submitted By: Hugo Villeneuve <hugo at hugovil dot com> |
2 | Date: 2006-03-04 | ||
3 | Initial Package Version: 0.6.13 | ||
4 | Origin: n/a | ||
5 | Description: When doxygen is not installed, 'make install' aborts | ||
6 | with the following error: | ||
7 | "*** No rule to make target `install-apidocs', needed by `install-data-local'." | ||
8 | |||
9 | diff -Naur libexif-0.6.13-orig/doc/Makefile.am libexif-0.6.13-patched/doc/Makefile.am | ||
10 | --- libexif-0.6.13-orig/doc/Makefile.am 2005-07-18 16:34:04.000000000 -0400 | ||
11 | +++ libexif-0.6.13-patched/doc/Makefile.am 2006-03-04 14:51:31.132839264 -0500 | ||
12 | @@ -74,12 +74,16 @@ | ||
13 | |||
14 | all-local: $(DOXYGEN_STAMPS) | ||
15 | |||
16 | +if HAVE_DOXYGEN | ||
17 | + | ||
18 | install-data-local: install-apidocs install-apidocs-internals | ||
19 | |||
20 | uninstall-local: uninstall-apidocs uninstall-apidocs-internals | ||
21 | |||
22 | clean-local: clean-apidocs | ||
23 | |||
24 | +endif | ||
25 | + | ||
26 | upload: $(DOXYGEN_UPLOAD) | ||
27 | |||
28 | CLEANFILES = $(DOXYGEN_FILES) $(DOXYGEN_STAMPS) | ||
29 | diff -Naur libexif-0.6.13-orig/doc/Makefile.in libexif-0.6.13-patched/doc/Makefile.in | ||
30 | --- libexif-0.6.13-orig/doc/Makefile.in 2005-12-27 16:18:36.000000000 -0500 | ||
31 | +++ libexif-0.6.13-patched/doc/Makefile.in 2006-03-04 14:51:18.138814656 -0500 | ||
32 | @@ -444,11 +444,11 @@ | ||
33 | |||
34 | all-local: $(DOXYGEN_STAMPS) | ||
35 | |||
36 | -install-data-local: install-apidocs install-apidocs-internals | ||
37 | +@HAVE_DOXYGEN_TRUE@install-data-local: install-apidocs install-apidocs-internals | ||
38 | |||
39 | -uninstall-local: uninstall-apidocs uninstall-apidocs-internals | ||
40 | +@HAVE_DOXYGEN_TRUE@uninstall-local: uninstall-apidocs uninstall-apidocs-internals | ||
41 | |||
42 | -clean-local: clean-apidocs | ||
43 | +@HAVE_DOXYGEN_TRUE@clean-local: clean-apidocs | ||
44 | |||
45 | upload: $(DOXYGEN_UPLOAD) | ||
46 | # Tell versions [3.59,3.63) of GNU make to not export all variables. |