Skip to content

Commit

Permalink
Makefile: Avoid shell expansion, for Windows users.
Browse files Browse the repository at this point in the history
Reported by Steve.
  • Loading branch information
pinard committed May 9, 2012
1 parent 0e80f95 commit 0b0080f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Makefile
Expand Up @@ -10,7 +10,7 @@ PYSETUP = $(PYTHON) setup.py
PPPP = $(PYTHON) pppp -C ppppconfig.py

all:
$(PPPP) *.in contrib tests
$(PPPP) Pymacs.py.in pppp.rst.in pymacs.el.in pymacs.rst.in contrib tests
$(PYSETUP) --quiet build

check: clean-debug
Expand All @@ -21,7 +21,7 @@ check: clean-debug
$(PYTHON) pytest -f t $(TEST)

install:
$(PPPP) *.in Pymacs.py.in contrib tests
$(PPPP) Pymacs.py.in pppp.rst.in pymacs.el.in pymacs.rst.in contrib tests
$(PYSETUP) install

clean: clean-debug
Expand Down
4 changes: 2 additions & 2 deletions pymacs.rst.in
Expand Up @@ -266,8 +266,8 @@ be installed in turn. Always start with the Python file.
read the ``Makefile`` file and emulate what ``make install`` does,
maybe something like this::

python pppp -C ppppconfig.py pppp.rst.in pymacs.el.in \
pymacs.rst.in Pymacs.py.in contrib tests
python pppp -C ppppconfig.py \
Pymacs.py.in pppp.rst.in pymacs.el.in pymacs.rst.in contrib tests
python setup.py install

Without ``make install``, you might also have to combine the two first
Expand Down

0 comments on commit 0b0080f

Please sign in to comment.