From 0869578a58a0f0cc40bff344aaa0797bc026c81c Mon Sep 17 00:00:00 2001 From: Olivier Gayot Date: Sat, 16 May 2015 03:30:49 +0100 Subject: GNU make does not handle spaces in filenames Let's not use double quotes around filenames since make does not handle them. Signed-off-by: Olivier Gayot --- gen_makefile.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gen_makefile.py') diff --git a/gen_makefile.py b/gen_makefile.py index 7b66592..55eb161 100755 --- a/gen_makefile.py +++ b/gen_makefile.py @@ -72,7 +72,7 @@ class makefile_generator(): # linkage self.append_rule('$(NAME)', '$(OBJ)', [ - '$(%s) -o "$@" $^ $(LDFLAGS)' % (self._compiler_var) + '$(%s) -o $@ $^ $(LDFLAGS)' % (self._compiler_var) ]) self.append_separator() -- cgit v1.2.3