From ed0de358ef8540c761008c1eb8eeb51e61b11a4a Mon Sep 17 00:00:00 2001 From: borutr Date: Sun, 11 May 2003 13:10:03 +0000 Subject: [PATCH] add quotes to file name parameters for gplink and gpasm git-svn-id: https://sdcc.svn.sourceforge.net/svnroot/sdcc/trunk/sdcc@2609 4a8a32a2-be11-0410-ad9d-d568d2c75423 --- src/pic/main.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/pic/main.c b/src/pic/main.c index 486a4b81..7b91caa2 100644 --- a/src/pic/main.c +++ b/src/pic/main.c @@ -327,12 +327,12 @@ _hasNativeMulFor (iCode *ic, sym_link *left, sym_link *right) */ static const char *_linkCmd[] = { - "gplink", "-nf", "$1", NULL + "gplink", "-nf", "\"$1\"", NULL }; static const char *_asmCmd[] = { - "gpasm", "-c", "$1.asm", NULL + "gpasm", "-c", "\"$1.asm\"", NULL }; -- 2.47.2