From 5cd7421c90d6033c2e6af36d3a7172dc8d29d52f Mon Sep 17 00:00:00 2001 From: Thien-Thi Nguyen Date: Mon, 3 Apr 2000 22:22:02 +0000 Subject: [PATCH] (install-lib): In dir Lib, do not use "*.swg" wildcard since there are no longer any such files there. git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@375 626c5289-ae23-0410-ae9c-e8d60b6d4f22 --- Makefile.in | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Makefile.in b/Makefile.in index ec66b4e02..93205b0dd 100644 --- a/Makefile.in +++ b/Makefile.in @@ -148,7 +148,8 @@ install-lib: @echo "Installing the SWIG library" @$(MKINSTDIRS) $(SWIG_LIB) # cd $(SWIG_LIB); rm -rf * - @cd $(srcdir)/Lib; for i in *.i *.swg; \ +# The following line has `*.swg' removed -- add it back if needed. + @cd $(srcdir)/Lib; for i in *.i; \ do \ echo "Installing Lib/$$i"; \ ../$(INSTALL_DATA) $$i $(SWIG_LIB)/$$i; \