Author: gnichols Date: 2011-03-08 13:06:57 +0000 (Tue, 08 Mar 2011) New Revision: 793
Modified: trunk/test-env/www/cgi/Makefile Log: 680225 - network test should use HTTP for file transfer tests rather than NFS
Modified: trunk/test-env/www/cgi/Makefile =================================================================== --- trunk/test-env/www/cgi/Makefile 2011-03-08 13:06:28 UTC (rev 792) +++ trunk/test-env/www/cgi/Makefile 2011-03-08 13:06:57 UTC (rev 793) @@ -16,8 +16,8 @@ .PHONY: clean
-FILES := v7web.py v7xml.py -SUBDIRS := xsl +FILES := v7web.py v7xml.py networkTest.py +SUBDIRS := xsl
clean: for i in $(SUBDIRS); do $(MAKE) -C $$i; done @@ -27,6 +27,8 @@ all install: rm -rf $(DESTDIR)/var/v7/cgi mkdir -p $(DESTDIR)/var/v7/cgi + mkdir -p $(DESTDIR)/var/v7/store + chown apache:apache $(DESTDIR)/var/v7/store for file in $(FILES); do cp -f $$file $(DESTDIR)/var/v7/cgi/$$file; done for i in $(SUBDIRS); do $(MAKE) -C $$i V7_CATALOG_CSS_COPY=$(V7_CATALOG_CSS_COPY) install; done mkdir -p $(DESTDIR)/etc/httpd/conf.d
v7-commits@lists.stg.fedorahosted.org