diff options
| author | Glenn Morris | 2013-10-23 00:20:57 -0700 |
|---|---|---|
| committer | Glenn Morris | 2013-10-23 00:20:57 -0700 |
| commit | 48f73cfbf3d028b29655b207491e129607b88632 (patch) | |
| tree | f42e0fea3821990415319897db31bc1917272e9a /doc | |
| parent | b8e3b0a9ecb6c8ca1c2a4db189e92bcf08b5052d (diff) | |
| download | emacs-48f73cfbf3d028b29655b207491e129607b88632.tar.gz emacs-48f73cfbf3d028b29655b207491e129607b88632.zip | |
Progress towards allowing installation in directories with whitespace
* Makefile.in (COPYDESTS, write_subdir, install-arch-dep)
(install-arch-indep, install-etcdoc, install-info, install-man)
(install-etc, uninstall): Quote entities that might contain whitespace.
* build-aux/update-subdirs: Handle whitespace in argument.
Check cd return value.
* doc/emacs/Makefile.in (install-dvi, install-html, install-pdf)
(install-ps, uninstall-dvi, uninstall-html, uninstall-ps)
(uninstall-pdf): Quote entities that might contain whitespace.
* doc/lispintro/Makefile.in (install-dvi, install-html, install-pdf)
(install-ps, uninstall-dvi, uninstall-html, uninstall-ps)
(uninstall-pdf): Quote entities that might contain whitespace.
* doc/lispref/Makefile.in (install-dvi, install-html, install-pdf)
(install-ps, uninstall-dvi, uninstall-html, uninstall-ps)
(uninstall-pdf): Quote entities that might contain whitespace.
* doc/misc/Makefile.in (install-dvi, install-html, install-pdf)
(install-ps, uninstall-dvi, uninstall-html, uninstall-ps)
(uninstall-pdf): Quote entities that might contain whitespace.
* lib-src/Makefile.in ($(DESTDIR)${archlibdir}, need-blessmail, install)
(uninstall): Quote entities that might contain whitespace.
* nt/Makefile.in ($(DESTDIR)${archlibdir}, install, uninstall):
Quote entities that might contain whitespace.
Diffstat (limited to 'doc')
| -rw-r--r-- | doc/emacs/ChangeLog | 9 | ||||
| -rw-r--r-- | doc/emacs/Makefile.in | 28 | ||||
| -rw-r--r-- | doc/lispintro/ChangeLog | 6 | ||||
| -rw-r--r-- | doc/lispintro/Makefile.in | 28 | ||||
| -rw-r--r-- | doc/lispref/ChangeLog | 6 | ||||
| -rw-r--r-- | doc/lispref/Makefile.in | 28 | ||||
| -rw-r--r-- | doc/misc/ChangeLog | 6 | ||||
| -rw-r--r-- | doc/misc/Makefile.in | 28 |
8 files changed, 82 insertions, 57 deletions
diff --git a/doc/emacs/ChangeLog b/doc/emacs/ChangeLog index f36097e5ed6..eb82535031f 100644 --- a/doc/emacs/ChangeLog +++ b/doc/emacs/ChangeLog | |||
| @@ -1,6 +1,13 @@ | |||
| 1 | 2013-10-23 Glenn Morris <rgm@gnu.org> | ||
| 2 | |||
| 3 | * Makefile.in (install-dvi, install-html, install-pdf) | ||
| 4 | (install-ps, uninstall-dvi, uninstall-html, uninstall-ps) | ||
| 5 | (uninstall-pdf): Quote entities that might contain whitespace. | ||
| 6 | |||
| 1 | 2013-10-20 Xue Fuqiao <xfq.free@gmail.com> | 7 | 2013-10-20 Xue Fuqiao <xfq.free@gmail.com> |
| 2 | 8 | ||
| 3 | * custom.texi (Init Syntax, Terminal Init, Terminal Init): Remove @refill. | 9 | * custom.texi (Init Syntax, Terminal Init, Terminal Init): |
| 10 | Remove @refill. | ||
| 4 | 11 | ||
| 5 | 2013-10-13 Glenn Morris <rgm@gnu.org> | 12 | 2013-10-13 Glenn Morris <rgm@gnu.org> |
| 6 | 13 | ||
diff --git a/doc/emacs/Makefile.in b/doc/emacs/Makefile.in index bf9f8152ad4..9c4a90db4aa 100644 --- a/doc/emacs/Makefile.in +++ b/doc/emacs/Makefile.in | |||
| @@ -229,21 +229,21 @@ dist: | |||
| 229 | .PHONY: install-dvi install-html install-pdf install-ps install-doc | 229 | .PHONY: install-dvi install-html install-pdf install-ps install-doc |
| 230 | 230 | ||
| 231 | install-dvi: dvi | 231 | install-dvi: dvi |
| 232 | umask 022; $(MKDIR_P) $(DESTDIR)$(dvidir) | 232 | umask 022; $(MKDIR_P) "$(DESTDIR)$(dvidir)" |
| 233 | $(INSTALL_DATA) $(DVI_TARGETS) $(DESTDIR)$(dvidir) | 233 | $(INSTALL_DATA) $(DVI_TARGETS) "$(DESTDIR)$(dvidir)" |
| 234 | install-html: html | 234 | install-html: html |
| 235 | umask 022; $(MKDIR_P) $(DESTDIR)$(htmldir) | 235 | umask 022; $(MKDIR_P) "$(DESTDIR)$(htmldir)" |
| 236 | $(INSTALL_DATA) $(HTML_TARGETS) $(DESTDIR)$(htmldir) | 236 | $(INSTALL_DATA) $(HTML_TARGETS) "$(DESTDIR)$(htmldir)" |
| 237 | install-pdf: pdf | 237 | install-pdf: pdf |
| 238 | umask 022;$(MKDIR_P) $(DESTDIR)$(pdfdir) | 238 | umask 022;$(MKDIR_P) "$(DESTDIR)$(pdfdir)" |
| 239 | $(INSTALL_DATA) $(PDF_TARGETS) $(DESTDIR)$(pdfdir) | 239 | $(INSTALL_DATA) $(PDF_TARGETS) "$(DESTDIR)$(pdfdir)" |
| 240 | install-ps: ps | 240 | install-ps: ps |
| 241 | umask 022; $(MKDIR_P) $(DESTDIR)$(psdir) | 241 | umask 022; $(MKDIR_P) "$(DESTDIR)$(psdir)" |
| 242 | for file in $(PS_TARGETS); do \ | 242 | for file in $(PS_TARGETS); do \ |
| 243 | $(INSTALL_DATA) $${file} $(DESTDIR)$(psdir); \ | 243 | $(INSTALL_DATA) $${file} "$(DESTDIR)$(psdir)"; \ |
| 244 | [ -n "${GZIP_PROG}" ] || continue; \ | 244 | [ -n "${GZIP_PROG}" ] || continue; \ |
| 245 | rm -f $(DESTDIR)$(psdir)/$${file}.gz; \ | 245 | rm -f "$(DESTDIR)$(psdir)/$${file}.gz"; \ |
| 246 | ${GZIP_PROG} -9n $(DESTDIR)$(psdir)/$${file}; \ | 246 | ${GZIP_PROG} -9n "$(DESTDIR)$(psdir)/$${file}"; \ |
| 247 | done | 247 | done |
| 248 | 248 | ||
| 249 | ## Top-level Makefile installs the info pages. | 249 | ## Top-level Makefile installs the info pages. |
| @@ -254,20 +254,20 @@ install-doc: install-dvi install-html install-pdf install-ps | |||
| 254 | 254 | ||
| 255 | uninstall-dvi: | 255 | uninstall-dvi: |
| 256 | for file in $(DVI_TARGETS); do \ | 256 | for file in $(DVI_TARGETS); do \ |
| 257 | rm -f $(DESTDIR)$(dvidir)/$${file}; \ | 257 | rm -f "$(DESTDIR)$(dvidir)/$${file}"; \ |
| 258 | done | 258 | done |
| 259 | uninstall-html: | 259 | uninstall-html: |
| 260 | for file in $(HTML_TARGETS); do \ | 260 | for file in $(HTML_TARGETS); do \ |
| 261 | rm -f $(DESTDIR)$(htmldir)/$${file}; \ | 261 | rm -f "$(DESTDIR)$(htmldir)/$${file}"; \ |
| 262 | done | 262 | done |
| 263 | uninstall-ps: | 263 | uninstall-ps: |
| 264 | ext= ; [ -n "${GZIP_PROG}" ] && ext=.gz; \ | 264 | ext= ; [ -n "${GZIP_PROG}" ] && ext=.gz; \ |
| 265 | for file in $(PS_TARGETS); do \ | 265 | for file in $(PS_TARGETS); do \ |
| 266 | rm -f $(DESTDIR)$(psdir)/$${file}$${ext}; \ | 266 | rm -f "$(DESTDIR)$(psdir)/$${file}$${ext}"; \ |
| 267 | done | 267 | done |
| 268 | uninstall-pdf: | 268 | uninstall-pdf: |
| 269 | for file in $(PDF_TARGETS); do \ | 269 | for file in $(PDF_TARGETS); do \ |
| 270 | rm -f $(DESTDIR)$(pdfdir)/$${file}; \ | 270 | rm -f "$(DESTDIR)$(pdfdir)/$${file}"; \ |
| 271 | done | 271 | done |
| 272 | 272 | ||
| 273 | uninstall-doc: uninstall-dvi uninstall-html uninstall-pdf uninstall-ps | 273 | uninstall-doc: uninstall-dvi uninstall-html uninstall-pdf uninstall-ps |
diff --git a/doc/lispintro/ChangeLog b/doc/lispintro/ChangeLog index ec082eecb52..2e6164968c3 100644 --- a/doc/lispintro/ChangeLog +++ b/doc/lispintro/ChangeLog | |||
| @@ -1,3 +1,9 @@ | |||
| 1 | 2013-10-23 Glenn Morris <rgm@gnu.org> | ||
| 2 | |||
| 3 | * Makefile.in (install-dvi, install-html, install-pdf) | ||
| 4 | (install-ps, uninstall-dvi, uninstall-html, uninstall-ps) | ||
| 5 | (uninstall-pdf): Quote entities that might contain whitespace. | ||
| 6 | |||
| 1 | 2013-09-01 Glenn Morris <rgm@gnu.org> | 7 | 2013-09-01 Glenn Morris <rgm@gnu.org> |
| 2 | 8 | ||
| 3 | * emacs-lisp-intro.texi (beginning-of-buffer complete): | 9 | * emacs-lisp-intro.texi (beginning-of-buffer complete): |
diff --git a/doc/lispintro/Makefile.in b/doc/lispintro/Makefile.in index 363e12215b3..9a643c004ed 100644 --- a/doc/lispintro/Makefile.in +++ b/doc/lispintro/Makefile.in | |||
| @@ -145,21 +145,21 @@ dist: | |||
| 145 | .PHONY: install-dvi install-html install-pdf install-ps install-doc | 145 | .PHONY: install-dvi install-html install-pdf install-ps install-doc |
| 146 | 146 | ||
| 147 | install-dvi: dvi | 147 | install-dvi: dvi |
| 148 | umask 022; $(MKDIR_P) $(DESTDIR)$(dvidir) | 148 | umask 022; $(MKDIR_P) "$(DESTDIR)$(dvidir)" |
| 149 | $(INSTALL_DATA) $(DVI_TARGETS) $(DESTDIR)$(dvidir) | 149 | $(INSTALL_DATA) $(DVI_TARGETS) "$(DESTDIR)$(dvidir)" |
| 150 | install-html: html | 150 | install-html: html |
| 151 | umask 022; $(MKDIR_P) $(DESTDIR)$(htmldir) | 151 | umask 022; $(MKDIR_P) "$(DESTDIR)$(htmldir)" |
| 152 | $(INSTALL_DATA) $(HTML_TARGETS) $(DESTDIR)$(htmldir) | 152 | $(INSTALL_DATA) $(HTML_TARGETS) "$(DESTDIR)$(htmldir)" |
| 153 | install-pdf: pdf | 153 | install-pdf: pdf |
| 154 | umask 022;$(MKDIR_P) $(DESTDIR)$(pdfdir) | 154 | umask 022;$(MKDIR_P) "$(DESTDIR)$(pdfdir)" |
| 155 | $(INSTALL_DATA) $(PDF_TARGETS) $(DESTDIR)$(pdfdir) | 155 | $(INSTALL_DATA) $(PDF_TARGETS) "$(DESTDIR)$(pdfdir)" |
| 156 | install-ps: ps | 156 | install-ps: ps |
| 157 | umask 022; $(MKDIR_P) $(DESTDIR)$(psdir) | 157 | umask 022; $(MKDIR_P) "$(DESTDIR)$(psdir)" |
| 158 | for file in $(PS_TARGETS); do \ | 158 | for file in $(PS_TARGETS); do \ |
| 159 | $(INSTALL_DATA) $${file} $(DESTDIR)$(psdir); \ | 159 | $(INSTALL_DATA) $${file} "$(DESTDIR)$(psdir)"; \ |
| 160 | [ -n "${GZIP_PROG}" ] || continue; \ | 160 | [ -n "${GZIP_PROG}" ] || continue; \ |
| 161 | rm -f $(DESTDIR)$(psdir)/$${file}.gz; \ | 161 | rm -f "$(DESTDIR)$(psdir)/$${file}.gz"; \ |
| 162 | ${GZIP_PROG} -9n $(DESTDIR)$(psdir)/$${file}; \ | 162 | ${GZIP_PROG} -9n "$(DESTDIR)$(psdir)/$${file}"; \ |
| 163 | done | 163 | done |
| 164 | 164 | ||
| 165 | ## Top-level Makefile installs the info pages. | 165 | ## Top-level Makefile installs the info pages. |
| @@ -170,20 +170,20 @@ install-doc: install-dvi install-html install-pdf install-ps | |||
| 170 | 170 | ||
| 171 | uninstall-dvi: | 171 | uninstall-dvi: |
| 172 | for file in $(DVI_TARGETS); do \ | 172 | for file in $(DVI_TARGETS); do \ |
| 173 | rm -f $(DESTDIR)$(dvidir)/$${file}; \ | 173 | rm -f "$(DESTDIR)$(dvidir)/$${file}"; \ |
| 174 | done | 174 | done |
| 175 | uninstall-html: | 175 | uninstall-html: |
| 176 | for file in $(HTML_TARGETS); do \ | 176 | for file in $(HTML_TARGETS); do \ |
| 177 | rm -f $(DESTDIR)$(htmldir)/$${file}; \ | 177 | rm -f "$(DESTDIR)$(htmldir)/$${file}"; \ |
| 178 | done | 178 | done |
| 179 | uninstall-ps: | 179 | uninstall-ps: |
| 180 | ext= ; [ -n "${GZIP_PROG}" ] && ext=.gz; \ | 180 | ext= ; [ -n "${GZIP_PROG}" ] && ext=.gz; \ |
| 181 | for file in $(PS_TARGETS); do \ | 181 | for file in $(PS_TARGETS); do \ |
| 182 | rm -f $(DESTDIR)$(psdir)/$${file}$${ext}; \ | 182 | rm -f "$(DESTDIR)$(psdir)/$${file}$${ext}"; \ |
| 183 | done | 183 | done |
| 184 | uninstall-pdf: | 184 | uninstall-pdf: |
| 185 | for file in $(PDF_TARGETS); do \ | 185 | for file in $(PDF_TARGETS); do \ |
| 186 | rm -f $(DESTDIR)$(pdfdir)/$${file}; \ | 186 | rm -f "$(DESTDIR)$(pdfdir)/$${file}"; \ |
| 187 | done | 187 | done |
| 188 | 188 | ||
| 189 | uninstall-doc: uninstall-dvi uninstall-html uninstall-pdf uninstall-ps | 189 | uninstall-doc: uninstall-dvi uninstall-html uninstall-pdf uninstall-ps |
diff --git a/doc/lispref/ChangeLog b/doc/lispref/ChangeLog index 42659150058..7efe70f683d 100644 --- a/doc/lispref/ChangeLog +++ b/doc/lispref/ChangeLog | |||
| @@ -1,3 +1,9 @@ | |||
| 1 | 2013-10-23 Glenn Morris <rgm@gnu.org> | ||
| 2 | |||
| 3 | * Makefile.in (install-dvi, install-html, install-pdf) | ||
| 4 | (install-ps, uninstall-dvi, uninstall-html, uninstall-ps) | ||
| 5 | (uninstall-pdf): Quote entities that might contain whitespace. | ||
| 6 | |||
| 1 | 2013-10-19 Xue Fuqiao <xfq.free@gmail.com> | 7 | 2013-10-19 Xue Fuqiao <xfq.free@gmail.com> |
| 2 | 8 | ||
| 3 | * display.texi (Face Attributes): Add indexes for the ‘:box’ face attribute. | 9 | * display.texi (Face Attributes): Add indexes for the ‘:box’ face attribute. |
diff --git a/doc/lispref/Makefile.in b/doc/lispref/Makefile.in index 164646ac433..e2cc9ac088a 100644 --- a/doc/lispref/Makefile.in +++ b/doc/lispref/Makefile.in | |||
| @@ -201,21 +201,21 @@ dist: | |||
| 201 | .PHONY: install-dvi install-html install-pdf install-ps install-doc | 201 | .PHONY: install-dvi install-html install-pdf install-ps install-doc |
| 202 | 202 | ||
| 203 | install-dvi: dvi | 203 | install-dvi: dvi |
| 204 | umask 022; $(MKDIR_P) $(DESTDIR)$(dvidir) | 204 | umask 022; $(MKDIR_P) "$(DESTDIR)$(dvidir)" |
| 205 | $(INSTALL_DATA) $(DVI_TARGETS) $(DESTDIR)$(dvidir) | 205 | $(INSTALL_DATA) $(DVI_TARGETS) "$(DESTDIR)$(dvidir)" |
| 206 | install-html: html | 206 | install-html: html |
| 207 | umask 022; $(MKDIR_P) $(DESTDIR)$(htmldir) | 207 | umask 022; $(MKDIR_P) "$(DESTDIR)$(htmldir)" |
| 208 | $(INSTALL_DATA) $(HTML_TARGETS) $(DESTDIR)$(htmldir) | 208 | $(INSTALL_DATA) $(HTML_TARGETS) "$(DESTDIR)$(htmldir)" |
| 209 | install-pdf: pdf | 209 | install-pdf: pdf |
| 210 | umask 022;$(MKDIR_P) $(DESTDIR)$(pdfdir) | 210 | umask 022;$(MKDIR_P) "$(DESTDIR)$(pdfdir)" |
| 211 | $(INSTALL_DATA) $(PDF_TARGETS) $(DESTDIR)$(pdfdir) | 211 | $(INSTALL_DATA) $(PDF_TARGETS) "$(DESTDIR)$(pdfdir)" |
| 212 | install-ps: ps | 212 | install-ps: ps |
| 213 | umask 022; $(MKDIR_P) $(DESTDIR)$(psdir) | 213 | umask 022; $(MKDIR_P) "$(DESTDIR)$(psdir)" |
| 214 | for file in $(PS_TARGETS); do \ | 214 | for file in $(PS_TARGETS); do \ |
| 215 | $(INSTALL_DATA) $${file} $(DESTDIR)$(psdir); \ | 215 | $(INSTALL_DATA) $${file} "$(DESTDIR)$(psdir)"; \ |
| 216 | [ -n "${GZIP_PROG}" ] || continue; \ | 216 | [ -n "${GZIP_PROG}" ] || continue; \ |
| 217 | rm -f $(DESTDIR)$(psdir)/$${file}.gz; \ | 217 | rm -f "$(DESTDIR)$(psdir)/$${file}.gz"; \ |
| 218 | ${GZIP_PROG} -9n $(DESTDIR)$(psdir)/$${file}; \ | 218 | ${GZIP_PROG} -9n "$(DESTDIR)$(psdir)/$${file}"; \ |
| 219 | done | 219 | done |
| 220 | 220 | ||
| 221 | ## Top-level Makefile installs the info pages. | 221 | ## Top-level Makefile installs the info pages. |
| @@ -226,20 +226,20 @@ install-doc: install-dvi install-html install-pdf install-ps | |||
| 226 | 226 | ||
| 227 | uninstall-dvi: | 227 | uninstall-dvi: |
| 228 | for file in $(DVI_TARGETS); do \ | 228 | for file in $(DVI_TARGETS); do \ |
| 229 | rm -f $(DESTDIR)$(dvidir)/$${file}; \ | 229 | rm -f "$(DESTDIR)$(dvidir)/$${file}"; \ |
| 230 | done | 230 | done |
| 231 | uninstall-html: | 231 | uninstall-html: |
| 232 | for file in $(HTML_TARGETS); do \ | 232 | for file in $(HTML_TARGETS); do \ |
| 233 | rm -f $(DESTDIR)$(htmldir)/$${file}; \ | 233 | rm -f "$(DESTDIR)$(htmldir)/$${file}"; \ |
| 234 | done | 234 | done |
| 235 | uninstall-ps: | 235 | uninstall-ps: |
| 236 | ext= ; [ -n "${GZIP_PROG}" ] && ext=.gz; \ | 236 | ext= ; [ -n "${GZIP_PROG}" ] && ext=.gz; \ |
| 237 | for file in $(PS_TARGETS); do \ | 237 | for file in $(PS_TARGETS); do \ |
| 238 | rm -f $(DESTDIR)$(psdir)/$${file}$${ext}; \ | 238 | rm -f "$(DESTDIR)$(psdir)/$${file}$${ext}"; \ |
| 239 | done | 239 | done |
| 240 | uninstall-pdf: | 240 | uninstall-pdf: |
| 241 | for file in $(PDF_TARGETS); do \ | 241 | for file in $(PDF_TARGETS); do \ |
| 242 | rm -f $(DESTDIR)$(pdfdir)/$${file}; \ | 242 | rm -f "$(DESTDIR)$(pdfdir)/$${file}"; \ |
| 243 | done | 243 | done |
| 244 | 244 | ||
| 245 | uninstall-doc: uninstall-dvi uninstall-html uninstall-pdf uninstall-ps | 245 | uninstall-doc: uninstall-dvi uninstall-html uninstall-pdf uninstall-ps |
diff --git a/doc/misc/ChangeLog b/doc/misc/ChangeLog index 76d3954cfcf..3563c1e768d 100644 --- a/doc/misc/ChangeLog +++ b/doc/misc/ChangeLog | |||
| @@ -1,3 +1,9 @@ | |||
| 1 | 2013-10-23 Glenn Morris <rgm@gnu.org> | ||
| 2 | |||
| 3 | * Makefile.in (install-dvi, install-html, install-pdf) | ||
| 4 | (install-ps, uninstall-dvi, uninstall-html, uninstall-ps) | ||
| 5 | (uninstall-pdf): Quote entities that might contain whitespace. | ||
| 6 | |||
| 1 | 2013-10-17 Jay Belanger <jay.p.belanger@gmail.com> | 7 | 2013-10-17 Jay Belanger <jay.p.belanger@gmail.com> |
| 2 | 8 | ||
| 3 | * calc.el (Data Type Formats): Don't specify the size at | 9 | * calc.el (Data Type Formats): Don't specify the size at |
diff --git a/doc/misc/Makefile.in b/doc/misc/Makefile.in index 30fc4953172..f43520e97a4 100644 --- a/doc/misc/Makefile.in +++ b/doc/misc/Makefile.in | |||
| @@ -877,21 +877,21 @@ dist: | |||
| 877 | .PHONY: install-dvi install-html install-pdf install-ps install-doc | 877 | .PHONY: install-dvi install-html install-pdf install-ps install-doc |
| 878 | 878 | ||
| 879 | install-dvi: dvi | 879 | install-dvi: dvi |
| 880 | umask 022; $(MKDIR_P) $(DESTDIR)$(dvidir) | 880 | umask 022; $(MKDIR_P) "$(DESTDIR)$(dvidir)" |
| 881 | $(INSTALL_DATA) $(DVI_TARGETS) $(DESTDIR)$(dvidir) | 881 | $(INSTALL_DATA) $(DVI_TARGETS) "$(DESTDIR)$(dvidir)" |
| 882 | install-html: html | 882 | install-html: html |
| 883 | umask 022; $(MKDIR_P) $(DESTDIR)$(htmldir) | 883 | umask 022; $(MKDIR_P) "$(DESTDIR)$(htmldir)" |
| 884 | $(INSTALL_DATA) $(HTML_TARGETS) $(DESTDIR)$(htmldir) | 884 | $(INSTALL_DATA) $(HTML_TARGETS) "$(DESTDIR)$(htmldir)" |
| 885 | install-pdf: pdf | 885 | install-pdf: pdf |
| 886 | umask 022;$(MKDIR_P) $(DESTDIR)$(pdfdir) | 886 | umask 022;$(MKDIR_P) "$(DESTDIR)$(pdfdir)" |
| 887 | $(INSTALL_DATA) $(PDF_TARGETS) $(DESTDIR)$(pdfdir) | 887 | $(INSTALL_DATA) $(PDF_TARGETS) "$(DESTDIR)$(pdfdir)" |
| 888 | install-ps: ps | 888 | install-ps: ps |
| 889 | umask 022; $(MKDIR_P) $(DESTDIR)$(psdir) | 889 | umask 022; $(MKDIR_P) "$(DESTDIR)$(psdir)" |
| 890 | for file in $(PS_TARGETS); do \ | 890 | for file in $(PS_TARGETS); do \ |
| 891 | $(INSTALL_DATA) $${file} $(DESTDIR)$(psdir); \ | 891 | $(INSTALL_DATA) $${file} "$(DESTDIR)$(psdir)"; \ |
| 892 | [ -n "${GZIP_PROG}" ] || continue; \ | 892 | [ -n "${GZIP_PROG}" ] || continue; \ |
| 893 | rm -f $(DESTDIR)$(psdir)/$${file}.gz; \ | 893 | rm -f "$(DESTDIR)$(psdir)/$${file}.gz"; \ |
| 894 | ${GZIP_PROG} -9n $(DESTDIR)$(psdir)/$${file}; \ | 894 | ${GZIP_PROG} -9n "$(DESTDIR)$(psdir)/$${file}"; \ |
| 895 | done | 895 | done |
| 896 | 896 | ||
| 897 | ## Top-level Makefile installs the info pages. | 897 | ## Top-level Makefile installs the info pages. |
| @@ -903,20 +903,20 @@ install-doc: install-dvi install-html install-pdf install-ps | |||
| 903 | 903 | ||
| 904 | uninstall-dvi: | 904 | uninstall-dvi: |
| 905 | for file in $(DVI_TARGETS); do \ | 905 | for file in $(DVI_TARGETS); do \ |
| 906 | rm -f $(DESTDIR)$(dvidir)/$${file}; \ | 906 | rm -f "$(DESTDIR)$(dvidir)/$${file}"; \ |
| 907 | done | 907 | done |
| 908 | uninstall-html: | 908 | uninstall-html: |
| 909 | for file in $(HTML_TARGETS); do \ | 909 | for file in $(HTML_TARGETS); do \ |
| 910 | rm -f $(DESTDIR)$(htmldir)/$${file}; \ | 910 | rm -f "$(DESTDIR)$(htmldir)/$${file}"; \ |
| 911 | done | 911 | done |
| 912 | uninstall-ps: | 912 | uninstall-ps: |
| 913 | ext= ; [ -n "${GZIP_PROG}" ] && ext=.gz; \ | 913 | ext= ; [ -n "${GZIP_PROG}" ] && ext=.gz; \ |
| 914 | for file in $(PS_TARGETS); do \ | 914 | for file in $(PS_TARGETS); do \ |
| 915 | rm -f $(DESTDIR)$(psdir)/$${file}$${ext}; \ | 915 | rm -f "$(DESTDIR)$(psdir)/$${file}$${ext}"; \ |
| 916 | done | 916 | done |
| 917 | uninstall-pdf: | 917 | uninstall-pdf: |
| 918 | for file in $(PDF_TARGETS); do \ | 918 | for file in $(PDF_TARGETS); do \ |
| 919 | rm -f $(DESTDIR)$(pdfdir)/$${file}; \ | 919 | rm -f "$(DESTDIR)$(pdfdir)/$${file}"; \ |
| 920 | done | 920 | done |
| 921 | 921 | ||
| 922 | uninstall-doc: uninstall-dvi uninstall-html uninstall-pdf uninstall-ps | 922 | uninstall-doc: uninstall-dvi uninstall-html uninstall-pdf uninstall-ps |