Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 77197 | Differences between
and this patch

Collapse All | Expand All

(-)brlcad-7.10.2.orig/src/other/tcl/unix/Makefile.in (-3 / +3 lines)
Lines 839-855 Link Here
839
	    done;
839
	    done;
840
	@echo "Installing and cross-linking top-level (.1) docs";
840
	@echo "Installing and cross-linking top-level (.1) docs";
841
	@for i in $(TOP_DIR)/doc/*.1; do \
841
	@for i in $(TOP_DIR)/doc/*.1; do \
842
	    $(UNIX_DIR)/installManPage $(MAN_FLAGS) $$i $(MAN1_INSTALL_DIR); \
842
	    [ ! -e $(TOP_DIR)/doc/$$i ] || $(UNIX_DIR)/installManPage $(MAN_FLAGS) $(TOP_DIR)/doc/$$i $(MAN1_INSTALL_DIR); \
843
	done
843
	done
844
844
845
	@echo "Installing and cross-linking C API (.3) docs";
845
	@echo "Installing and cross-linking C API (.3) docs";
846
	@for i in $(TOP_DIR)/doc/*.3; do \
846
	@for i in $(TOP_DIR)/doc/*.3; do \
847
	    $(UNIX_DIR)/installManPage $(MAN_FLAGS) $$i $(MAN3_INSTALL_DIR); \
847
	    [ ! -e $(TOP_DIR)/doc/$$i ] || $(UNIX_DIR)/installManPage $(MAN_FLAGS) $(TOP_DIR)/doc/$$i $(MAN3_INSTALL_DIR); \
848
	done
848
	done
849
849
850
	@echo "Installing and cross-linking command (.n) docs";
850
	@echo "Installing and cross-linking command (.n) docs";
851
	@for i in $(TOP_DIR)/doc/*.n; do \
851
	@for i in $(TOP_DIR)/doc/*.n; do \
852
	    $(UNIX_DIR)/installManPage $(MAN_FLAGS) $$i $(MANN_INSTALL_DIR); \
852
	    [ ! -e $(TOP_DIR)/doc/$$i ] || $(UNIX_DIR)/installManPage $(MAN_FLAGS) $(TOP_DIR)/doc/$$i $(MANN_INSTALL_DIR); \
853
	done
853
	done
854
854
855
# Optional target to install private headers
855
# Optional target to install private headers
(-)brlcad-7.10.2.orig/src/other/tk/unix/Makefile.in (-3 / +3 lines)
Lines 824-841 Link Here
824
	    done;
824
	    done;
825
	@echo "Installing and cross-linking top-level (.1) docs";
825
	@echo "Installing and cross-linking top-level (.1) docs";
826
	@for i in $(TOP_DIR)/doc/*.1; do \
826
	@for i in $(TOP_DIR)/doc/*.1; do \
827
	    $(UNIX_DIR)/installManPage $(MAN_FLAGS) $$i $(MAN1_INSTALL_DIR); \
827
	    [ ! -e $(TOP_DIR)/doc/$$i ] || $(UNIX_DIR)/installManPage $(MAN_FLAGS) $(TOP_DIR)/doc/$$i $(MAN1_INSTALL_DIR); \
828
	done
828
	done
829
829
830
	@echo "Installing and cross-linking C API (.3) docs";
830
	@echo "Installing and cross-linking C API (.3) docs";
831
	@for i in $(TOP_DIR)/doc/*.3; do \
831
	@for i in $(TOP_DIR)/doc/*.3; do \
832
	    $(UNIX_DIR)/installManPage $(MAN_FLAGS) $$i $(MAN3_INSTALL_DIR); \
832
	    [ ! -e $(TOP_DIR)/doc/$$i ] || $(UNIX_DIR)/installManPage $(MAN_FLAGS) $(TOP_DIR)/doc/$$i $(MAN3_INSTALL_DIR); \
833
	done
833
	done
834
834
835
	@echo "Installing and cross-linking command (.n) docs";
835
	@echo "Installing and cross-linking command (.n) docs";
836
	@for i in $(TOP_DIR)/doc/*.n; do \
836
	@for i in $(TOP_DIR)/doc/*.n; do \
837
	    if [ "ttk_dialog.n" = `basename $$i` ] ; then continue ; fi ; \
837
	    if [ "ttk_dialog.n" = `basename $$i` ] ; then continue ; fi ; \
838
	    $(UNIX_DIR)/installManPage $(MAN_FLAGS) $$i $(MANN_INSTALL_DIR); \
838
	    [ ! -e $(TOP_DIR)/doc/$$i ] || $(UNIX_DIR)/installManPage $(MAN_FLAGS) $(TOP_DIR)/doc/$$i $(MANN_INSTALL_DIR); \
839
	done
839
	done
840
840
841
# Optional target to install private headers
841
# Optional target to install private headers

Return to bug 77197