distcc is a program to distribute compilation of C or C++ code across several machines on a network. distcc should always generate the same results as a local compile, is simple to install and use, and is often two or more times faster than a local compile. feedback/ok sthen@
17 lines
771 B
Plaintext
17 lines
771 B
Plaintext
$OpenBSD: patch-Makefile_in,v 1.1.1.1 2015/12/28 08:15:31 jasper Exp $
|
|
|
|
Don't install gzip'd manpages
|
|
|
|
--- Makefile.in.orig Wed Dec 23 22:48:45 2015
|
|
+++ Makefile.in Wed Dec 23 22:49:04 2015
|
|
@@ -1100,8 +1100,7 @@ install-man: $(man1_MEN)
|
|
if $(GZIP_BIN) --help >/dev/null; then \
|
|
mkdir -p "`dirname $$p`"; \
|
|
if [ -e "$(DESTDIR)$(man1dir)$$p" ]; then rm -fv "$(DESTDIR)$(man1dir)$$p"; fi; \
|
|
- $(GZIP_BIN) < "$(srcdir)/$$p" > "$$p.gz"; \
|
|
- $(INSTALL_DATA) "$$p.gz" "$(DESTDIR)$(man1dir)" || exit 1; \
|
|
+ $(INSTALL_DATA) "$$p" "$(DESTDIR)$(man1dir)" || exit 1; \
|
|
else \
|
|
echo "Warning: no working gzip, installing man pages uncompressed" 1>&2; \
|
|
if [ -e "$(DESTDIR)$(man1dir)$$p.gz" ]; then rm -fv "$(DESTDIR)$(man1dir)$$p.gz"; fi; \
|