Skip to content

Commit df9c2bd

Browse files
authored
Merge pull request #46 from mxstack/fix-undefined-warnings
Fix undefined warnings
2 parents 86943a7 + 32eee8a commit df9c2bd

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/mxmake/tests/test_templates.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -665,7 +665,7 @@ def test_Makefile(self, tempdir):
665665
# mxenv
666666
##############################################################################
667667
668-
export OS:=$(OS)
668+
OS?=
669669
670670
# Determine the executable path
671671
ifeq ("$(VENV_ENABLED)", "true")

src/mxmake/topics/applications/zope.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ $(ZOPE_INSTANCE_TARGET): $(COOKIECUTTER_TARGET) $(ZOPE_CONFIGURATION_FILE)
8282
@cookiecutter -f --no-input ${ZOPE_COOKIECUTTER_TEMPLATE_OPTIONS} --config-file $(ZOPE_CONFIGURATION_FILE) --output-dir $(ZOPE_BASE_FOLDER) $(ZOPE_TEMPLATE)
8383

8484
.PHONY: zope-instance
85-
zope-instance: $(ZOPE_INSTANCE_TARGET) $(SOURCES)
85+
zope-instance: $(ZOPE_INSTANCE_TARGET) $(SOURCES_TARGET)
8686

8787
.PHONY: zope-start
8888
zope-start: $(ZOPE_RUN_TARGET)

src/mxmake/topics/core/mxenv.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@
7575
# mxenv
7676
##############################################################################
7777

78-
export OS:=$(OS)
78+
OS?=
7979

8080
# Determine the executable path
8181
ifeq ("$(VENV_ENABLED)", "true")

0 commit comments

Comments
 (0)