Makefile: Fix tests removing double quote from RM variable

This commit fixes a regression introduced in 6823cb1 (Makefile: Do not
specify "--rm" docker run argument when executing on CircleCI)
This commit is contained in:
Jean-Christophe Fillion-Robin 2016-11-28 23:39:38 -05:00
parent 2b620ad718
commit 5117ab6493
No known key found for this signature in database
GPG Key ID: 15C1A2812F958BD3

View File

@ -28,9 +28,9 @@ windows-x64.test_ARGS = --exe-suffix ".exe"
# On CircleCI, do not attempt to delete container # On CircleCI, do not attempt to delete container
# See https://circleci.com/docs/docker-btrfs-error/ # See https://circleci.com/docs/docker-btrfs-error/
RM = "--rm" RM = --rm
ifeq ("$(CIRCLECI)", "true") ifeq ("$(CIRCLECI)", "true")
RM = "" RM =
endif endif
# #