From mboxrd@z Thu Jan 1 00:00:00 1970 From: kupcevic@sourceware.org Date: 4 Aug 2006 18:04:06 -0000 Subject: [Cluster-devel] conga/luci Makefile Message-ID: <20060804180406.19216.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 Changes by: kupcevic at sourceware.org 2006-08-04 18:04:05 Modified files: luci : Makefile Log message: command ordering error in zope installation Patches: http://sourceware.org/cgi-bin/cvsweb.cgi/conga/luci/Makefile.diff?cvsroot=cluster&r1=1.14&r2=1.15 --- conga/luci/Makefile 2006/08/04 17:55:24 1.14 +++ conga/luci/Makefile 2006/08/04 18:04:05 1.15 @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.14 2006/08/04 17:55:24 kupcevic Exp $ +# $Id: Makefile,v 1.15 2006/08/04 18:04:05 kupcevic Exp $ ZOPEINSTANCE=/var/lib/luci include ../make/version.in @@ -21,11 +21,11 @@ install: if [ "${include_zope_and_plone}" = "yes" ] ; then \ install -d ${libdir}/luci ; \ - install -d -m 700 ${libdir}/luci/zope ; \ cd zope ; \ ./configure --prefix=${libdir}/luci/zope --with-python=/usr/bin/python ; \ make ; \ make install ; \ + chmod 700 ${libdir}/luci/zope ; \ fi if [ "${include_zope_and_plone}" = "yes" ] ; then \ install -d ${libdir}/luci/zope/lib/python/Products ; \