blob: 931559c3a155c931be777f7bdaeb2ff398744b57 (
plain)
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
26
27
28
29
30
31
32
33
34
35
36
37
38
|
From 98272c1fc5c8451dcc43be70cdfb1070e3d72f3a Mon Sep 17 00:00:00 2001
From: Sebastian Pipping <sebastian@pipping.org>
Date: Tue, 14 Jun 2011 20:28:43 +0200
Subject: [PATCH] No longer copy Doxygen .gif files
---
doc/Makefile.am | 2 +-
doc/release.sh.in | 1 -
2 files changed, 1 insertions(+), 2 deletions(-)
diff --git a/doc/Makefile.am b/doc/Makefile.am
index 4e63062..d29b77c 100644
--- a/doc/Makefile.am
+++ b/doc/Makefile.am
@@ -27,7 +27,7 @@ distclean-local:
## Install doc files
install-data-local:
$(MKDIR_P) "$(DESTDIR)$(docdir)/html" ## Didn't work with installdirs-local
- $(INSTALL_DATA) html/*.{css,gif,html,png} "$(DESTDIR)$(docdir)/html/"
+ $(INSTALL_DATA) html/*.{css,html,png} "$(DESTDIR)$(docdir)/html/"
## Uninstall doc files
diff --git a/doc/release.sh.in b/doc/release.sh.in
index 59afb70..a930e64 100755
--- a/doc/release.sh.in
+++ b/doc/release.sh.in
@@ -15,7 +15,6 @@ rm -Rf "${distdir}" "${distdir}.zip"
mkdir -p "${distdir}/html"
cp \
html/*.css \
- html/*.gif \
html/*.html \
html/*.png \
\
--
1.7.5.3
|