From 1631b200aa1d07a47e704ea675b3ee32bcc779d1 Mon Sep 17 00:00:00 2001 From: Brad King Date: Mon, 21 May 2001 16:43:08 -0400 Subject: ERR: Added missing @srcdir@ and modified install expressions to include *.cmake* files instead of just *.cmake files (for .in). --- Makefile.in | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile.in b/Makefile.in index cc6e359..38d02c0 100644 --- a/Makefile.in +++ b/Makefile.in @@ -22,7 +22,7 @@ BIN_INSTALL_DIR = $(exec_prefix)/bin # Directory in which to install the templates and modules LIB_INSTALL_DIR = $(exec_prefix)/share/CMake -INSTALL = ./install-sh -c +INSTALL = @srcdir@/install-sh -c INSTALL_PROGRAM = ${INSTALL} INSTALL_DATA = ${INSTALL} -m 644 @@ -40,12 +40,12 @@ install: chmod +x @srcdir@/install-sh @echo "Installing cmake executable" @$(INSTALL_PROGRAM) Source/cmake $(BIN_INSTALL_DIR)/cmake - @for i in @srcdir@/Modules/*.cmake; \ + @for i in @srcdir@/Modules/*.cmake*; \ do \ echo "Installing $$i"; \ $(INSTALL_DATA) $$i $(LIB_INSTALL_DIR)/Modules; \ done; - @for i in @srcdir@/Templates/*.cmake; \ + @for i in @srcdir@/Templates/*.cmake*; \ do \ echo "Installing $$i"; \ $(INSTALL_DATA) $$i $(LIB_INSTALL_DIR)/Templates; \ -- cgit v0.12