From 334dff9957c25b9fb3a067859e102c58b05e591c Mon Sep 17 00:00:00 2001 From: Art Cancro Date: Mon, 26 Sep 2005 03:10:10 +0000 Subject: [PATCH] * Updated "make install" to handle the multi static thing --- webcit/ChangeLog | 4 ++++ webcit/Makefile.in | 11 ++++++++++- 2 files changed, 14 insertions(+), 1 deletion(-) diff --git a/webcit/ChangeLog b/webcit/ChangeLog index 01a24b6f2..5b2364177 100644 --- a/webcit/ChangeLog +++ b/webcit/ChangeLog @@ -1,4 +1,7 @@ $Log$ +Revision 625.23 2005/09/26 03:10:10 ajc +* Updated "make install" to handle the multi static thing + Revision 625.22 2005/09/26 02:45:06 ajc * Removed the Kevin Roth rich text editor and replaced it with TinyMCE. @@ -3059,3 +3062,4 @@ Sun Dec 6 19:50:55 EST 1998 Art Cancro 1998-12-03 Nathan Bryant * webserver.c: warning fix + diff --git a/webcit/Makefile.in b/webcit/Makefile.in index 9c5cbe4de..7af1c05ed 100644 --- a/webcit/Makefile.in +++ b/webcit/Makefile.in @@ -68,6 +68,15 @@ $(srcdir)/configure: $(srcdir)/configure.in $(srcdir)/aclocal.m4 install: test -d $(root)$(prefix) || mkdir $(root)$(prefix) test -d $(root)$(prefix)/static || mkdir $(root)$(prefix)/static - for i in webserver setup `find static -type f | grep -v CVS` ; do \ + for i in `find tiny_mce -type d | grep -v CVS` \ + ; do \ + test -d $(root)$(prefix)/$$i || mkdir $(root)$(prefix)/$$i; \ + done + for i in \ + webserver \ + setup \ + `find static -type f | grep -v CVS` \ + `find tiny_mce -type f | grep -v CVS` \ + ; do \ $(INSTALL) $$i $(root)$(prefix)/$$i; \ done -- 2.39.2