diff options
| author | Aaron LI <aaronly.me@outlook.com> | 2016-10-14 22:00:09 +0800 | 
|---|---|---|
| committer | Aaron LI <aaronly.me@outlook.com> | 2016-10-14 22:00:09 +0800 | 
| commit | a978bd5abcd02e8e0938098ee69ff475a02eebde (patch) | |
| tree | d02b6a658221938a48b2509a8bd37dd2a1997775 /Makefile | |
| parent | 47a357992bbfdef280eadb6efd71bea60b72289e (diff) | |
| download | fg21sim-a978bd5abcd02e8e0938098ee69ff475a02eebde.tar.bz2 | |
Makefile: Fix quotation
Do not quote Make variables, since Make does NOT understand or parse
single- or double-quote characters in any way.
Credit: http://stackoverflow.com/a/23332194
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 4 | 
1 files changed, 2 insertions, 2 deletions
@@ -7,7 +7,7 @@  #  # The name (also the directory) of the virtualenv -VENV ?= "venv" +VENV ?= venv  default: @@ -27,7 +27,7 @@ default:  # Create virtualenv and install/update the dependencies  venv: ${VENV}/bin/activate  ${VENV}/bin/activate: requirements.txt -	test -d "${VENV}" || virtualenv --python=python3 ${VENV} +	test -d ./${VENV} || virtualenv --python=python3 ${VENV}  	./${VENV}/bin/pip3 install --upgrade -r requirements.txt  	touch ${VENV}/bin/activate  | 
