Commit 7d57b178 authored by Tres Seaver's avatar Tres Seaver

Forward-port fix for #2237 from 2.8 branch.

parent 20bf371c
......@@ -9,6 +9,9 @@ Zope Changes
Bugs fixed
- Collector #2237: 'make' doesn't tell you to run 'make inplace'
before running 'make instance'.
- Collector #2235: A number of ZCatalog methods were doing boolean
evaluation of objects that implemented __len__ instead of checking
them against None. Replaced a number of "if not obj" with
......
......@@ -38,9 +38,9 @@ MKDIR=mkdir -p
# default: The default step (invoked when make is called without a target)
default: build
@echo
@echo Zope built. Next, do \'make install\' \(or \'make instance\'
@echo to run a Zope instance directly from the build directory\).
@echo
@echo Zope built. Next, do \'make install\' \(or \'make inplace\',
@echo followed by \'make instance\' to run a Zope instance directly
@echo from the build directory\).
# build: Do whatever 'setup.py build' implies
build:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment