Skip to content

Commit

Permalink
Quote PATH in makefile
Browse files Browse the repository at this point in the history
It is possible that your PATH has a directory with a space or some other
character. In fact, on Windows, this is most likely the case.
  • Loading branch information
kruton committed Oct 28, 2021
1 parent 0e88efd commit 9d18c6b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile.in
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,12 @@


@SET_MAKE@
LONGPATH=${PATH}:@PATH@
LONGPATH="${PATH}:@PATH@"

default: files

files all install tf clean uninstall: _force_
@cd src; PATH=${LONGPATH} ${MAKE} $@
@cd src; PATH="${LONGPATH}" "${MAKE}" $@

_force_:

Expand Down

0 comments on commit 9d18c6b

Please sign in to comment.