From mboxrd@z Thu Jan 1 00:00:00 1970 From: rmccabe@sourceware.org Date: 16 Jul 2007 22:10:28 -0000 Subject: [Cluster-devel] conga/luci/site Makefile Message-ID: <20070716221028.1877.qmail@sourceware.org> List-Id: To: cluster-devel.redhat.com MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit CVSROOT: /cvs/cluster Module name: conga Branch: RHEL5 Changes by: rmccabe at sourceware.org 2007-07-16 22:10:27 Modified files: luci/site : Makefile Log message: Fix an install bug that causes luci to bomb out at startup. Patches: http://sourceware.org/cgi-bin/cvsweb.cgi/conga/luci/site/Makefile.diff?cvsroot=cluster&only_with_tag=RHEL5&r1=1.11.2.2&r2=1.11.2.3 --- conga/luci/site/Makefile 2007/06/18 18:39:32 1.11.2.2 +++ conga/luci/site/Makefile 2007/07/16 22:10:27 1.11.2.3 @@ -53,7 +53,9 @@ install -m 644 luci/etc/zope.conf ${DESTDIR}/var/lib/luci/etc install -d ${DESTDIR}/var/lib/luci/Extensions - install -m 644 `find luci/Extensions -maxdepth 1 -type f | grep .py | grep -v \~ | grep -v \#` ${DESTDIR}/var/lib/luci/Extensions + install -m 644 `find luci/Extensions -maxdepth 1 -type f -name \*.py | grep -v \~ | grep -v \#` ${DESTDIR}/var/lib/luci/Extensions + install -d ${DESTDIR}/var/lib/luci/Extensions/ClusterModel + install -m 644 `find luci/Extensions/ClusterModel -maxdepth 1 -type f -name \*.py | grep -v \~ | grep -v \#` ${DESTDIR}/var/lib/luci/Extensions/ClusterModel install -d ${DESTDIR}/var/lib/luci/import # install -m 644 `find luci/import -maxdepth 1 -type f` ${DESTDIR}/var/lib/luci/import