Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Z
Zope
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
Zope
Commits
9a59da5f
Commit
9a59da5f
authored
May 10, 2006
by
Tres Seaver
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Collector #2081: 'make instance' forced inappropriate dir, credentials.
"This time for sure!"
parent
bdbf64f6
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
14 additions
and
13 deletions
+14
-13
doc/CHANGES.txt
doc/CHANGES.txt
+2
-0
inst/Makefile.in
inst/Makefile.in
+12
-13
No files found.
doc/CHANGES.txt
View file @
9a59da5f
...
...
@@ -18,6 +18,8 @@ Zope Changes
Bugs fixed
- Collector #2082: 'make install' broken.
- Collector #2081: 'make instance' forced inappropriate dir, credentials.
- Collector #1447: When editing content on a virtual-hosted zope,
...
...
inst/Makefile.in
View file @
9a59da5f
...
...
@@ -57,13 +57,22 @@ install:
# inplace: Do an in-place build
inplace
:
build
# test: Do an inplace build and run the Zope test suite.
test
:
inplace
${PYTHON}
"
${BASE_DIR}
/test.py"
${TESTOPTS}
# instance: Do an inplace build and create an instance home in the resulting
# software home.
instance
:
build
${PYTHON}
"
${BASE_DIR}
/utilities/mkzopeinstance.py"
${MKZ_FLAGS}
\
--dir
=
"
${BASE_DIR}
"
${PYTHON}
"
${BASE_DIR}
/utilities/mkzopeinstance.py"
${MKZ_FLAGS}
# testinst: Perform an inplace build and create an instance home in the
# resulting software home without asking questions. Useful when
# performing automated testing.
testinst
:
MKZ_FLAGS=--user=admin:admin --dir="${BASE_DIR}"
testinst
:
instance
# uninstance: Remove the instance files made by
make
instance (w/ prejudice)
# uninstance: Remove the instance files made by
test
instance (w/ prejudice)
uninstance
:
${RMRF}
"
${BASE_DIR}
/bin"
${RMRF}
"
${BASE_DIR}
/etc"
...
...
@@ -72,16 +81,6 @@ uninstance:
${RMRF}
"
${BASE_DIR}
/var"
${RMRF}
"
${BASE_DIR}
/Products"
# testinst: Perform an inplace build and create an instance home in the
# resulting software home without asking questions. Useful when
# performing automated testing.
testinst
:
MKZ_FLAGS=--user=admin:admin
testinst
:
instance
# test: Do an inplace build and run the Zope test suite.
test
:
inplace
${PYTHON}
"
${BASE_DIR}
/test.py"
${TESTOPTS}
# clean: Delete the build files and any binaries/bytecode files in
# the source directory for good measure.
clean
:
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment