Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
b3cdfd9e
Commit
b3cdfd9e
authored
Mar 04, 2013
by
Glenn Morris
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* Makefile.in (install-man): Ignore gzip exit status.
parent
a318f811
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
1 deletion
+11
-1
ChangeLog
ChangeLog
+4
-0
Makefile.in
Makefile.in
+7
-1
No files found.
ChangeLog
View file @
b3cdfd9e
2013-03-05 Glenn Morris <rgm@gnu.org>
* Makefile.in (install-man): Ignore gzip exit status.
2013-02-14 Paul Eggert <eggert@cs.ucla.edu>
Fix AIX port (Bug#13650).
...
...
Makefile.in
View file @
b3cdfd9e
...
...
@@ -621,6 +621,12 @@ install-info: info
${INSTALL_INFO}
--info-dir
=
$(DESTDIR)${infodir}
$(DESTDIR)${infodir}
/
$$
elt
)
;
\
done
)
## "gzip || true" is because some gzips exit with non-zero status
## if compression would not reduce the file size. Eg, the gzip in
## OpenBSD 4.9 seems to do this (2013/03). In Emacs, this can
## only happen with the tiny ctags.1 manpage. We don't really care if
## ctags.1 is compressed or not. "gzip -f" is another option here,
## but not sure if portable.
install-man
:
umask
022
;
${MKDIR_P}
$(DESTDIR)${man1dir}
thisdir
=
`
/bin/pwd
`
;
\
...
...
@@ -631,7 +637,7 @@ install-man:
${INSTALL_DATA}
${mansrcdir}
/
$
${page}
$(DESTDIR)${man1dir}
/
$
${dest}
)
;
\
(
[
-n
"
${GZIP_INFO}
"
]
&&
[
-n
"
${GZIP_PROG}
"
]
)
||
continue
;
\
rm
-f
$(DESTDIR)${man1dir}
/
$
${dest}
.gz
;
\
${GZIP_PROG}
-9n
$(DESTDIR)${man1dir}
/
$
${dest}
;
\
${GZIP_PROG}
-9n
$(DESTDIR)${man1dir}
/
$
${dest}
||
true
;
\
done
## Install those items from etc/ that need to end up elsewhere.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment