b92ffdaba9
Fixes the weird install issues with the bat binary New features can be found here: http://www.bacula.org/5.0.x-manuals/en/main/main/New_Features_in_5_0_0.html Thanks to sthen for help with the new wantlib/lib_depends stuff, removing the sqlite flavor, ... Thanks to giovanni for pointing out a ${TRUEPREFIX} -> /usr/local that crept into one of my patch files. ok sthen@
22 lines
754 B
Plaintext
22 lines
754 B
Plaintext
$OpenBSD: patch-manpages_Makefile_in,v 1.2 2010/07/20 14:38:39 merdely Exp $
|
|
--- manpages/Makefile.in.orig Tue Apr 27 15:58:29 2010
|
|
+++ manpages/Makefile.in Thu Jun 24 09:37:46 2010
|
|
@@ -21,15 +21,11 @@ depend:
|
|
install:
|
|
$(MKDIR) $(DESTDIR)/$(mandir)/man8
|
|
for I in ${MAN8}; \
|
|
- do ($(RMF) $$I.gz; gzip -c $$I >$$I.gz; \
|
|
- $(INSTALL_DATA) $$I.gz $(DESTDIR)$(mandir)/man8/$$I.gz; \
|
|
- rm -f $$I.gz); \
|
|
+ do $(INSTALL_DATA) $$I $(DESTDIR)$(mandir)/man8/$$I; \
|
|
done
|
|
$(MKDIR) $(DESTDIR)/$(mandir)/man1
|
|
for I in ${MAN1}; \
|
|
- do ($(RMF) $$I.gz; gzip -c $$I >$$I.gz; \
|
|
- $(INSTALL_DATA) $$I.gz $(DESTDIR)$(mandir)/man1/$$I.gz; \
|
|
- rm -f $$I.gz); \
|
|
+ do $(INSTALL_DATA) $$I $(DESTDIR)$(mandir)/man1/$$I; \
|
|
done
|
|
|
|
uninstall:
|