Commit ee0ac7ea authored by Tres Seaver's avatar Tres Seaver

Collector #2237: 'make' gave bad directions for inplace usage.

parent fdbd7bc3
...@@ -8,6 +8,9 @@ Zope Changes ...@@ -8,6 +8,9 @@ Zope Changes
Bugs fixed 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 - Collector #2235: A number of ZCatalog methods were doing boolean
evaluation of objects that implemented __len__ instead of checking evaluation of objects that implemented __len__ instead of checking
them against None. Replaced a number of "if not obj" with them against None. Replaced a number of "if not obj" with
......
...@@ -38,9 +38,9 @@ MKDIR=mkdir -p ...@@ -38,9 +38,9 @@ MKDIR=mkdir -p
# default: The default step (invoked when make is called without a target) # default: The default step (invoked when make is called without a target)
default: build default: build
@echo @echo
@echo Zope built. Next, do \'make install\' \(or \'make instance\' @echo Zope built. Next, do \'make install\' \(or \'make inplace\',
@echo to run a Zope instance directly from the build directory\). @echo followed by \'make instance\' to run a Zope instance directly
@echo @echo from the build directory\).
# build: Do whatever 'setup.py build' implies # build: Do whatever 'setup.py build' implies
build: 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