summaryrefslogtreecommitdiff
path: root/html
diff options
context:
space:
mode:
authorAndrey Kiselev <dron@ak4719.spb.edu>2005-09-21 13:37:13 +0000
committerAndrey Kiselev <dron@ak4719.spb.edu>2005-09-21 13:37:13 +0000
commit7e352b10d61a7efadf44c60bc83b94f5e6b77a8d (patch)
treef2108432f3227ee851c637ee62c3d59b150070b1 /html
parentd0f393f81a0fb1ad6c0b7214f106ae94a6a87453 (diff)
downloadlibtiff-git-7e352b10d61a7efadf44c60bc83b94f5e6b77a8d.tar.gz
Fixed problem with the Solaris make utility as per bug
http://bugzilla.remotesensing.org/show_bug.cgi?id=930
Diffstat (limited to 'html')
-rw-r--r--html/man/Makefile.am2
-rw-r--r--html/man/Makefile.in6
2 files changed, 4 insertions, 4 deletions
diff --git a/html/man/Makefile.am b/html/man/Makefile.am
index 1a473828..367b7826 100644
--- a/html/man/Makefile.am
+++ b/html/man/Makefile.am
@@ -107,7 +107,7 @@ index: $(docfiles)
done
${ECHO} ${INDEXEND} >> $(indexfile)
-manpages := $(docfiles:.html=)
+manpages = $(docfiles:.html=)
.PHONY: htmldoc
htmldoc: index
diff --git a/html/man/Makefile.in b/html/man/Makefile.in
index d1357bc6..9f17ded2 100644
--- a/html/man/Makefile.in
+++ b/html/man/Makefile.in
@@ -289,7 +289,7 @@ docfiles = \
dist_doc_DATA = $(indexfile) $(docfiles)
INDEXSTART = '<HTML><HEAD><TITLE>Libtiff HTML manpage index</TITLE></HEAD><BODY BGCOLOR=white><ul><H2>Man Pages</h2><p>'
INDEXEND = '</ul></BODY></HTML>'
-manpages := $(docfiles:.html=)
+manpages = $(docfiles:.html=)
all: all-am
.SUFFIXES:
@@ -302,9 +302,9 @@ $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__confi
exit 1;; \
esac; \
done; \
- echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign html/man/Makefile'; \
+ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu html/man/Makefile'; \
cd $(top_srcdir) && \
- $(AUTOMAKE) --foreign html/man/Makefile
+ $(AUTOMAKE) --gnu html/man/Makefile
.PRECIOUS: Makefile
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
@case '$?' in \