Don't put quotes around RUN_OPTIONS; they aren't needed, and they break
bugpoint-opt.

llvm-svn: 100988
diff --git a/MultiSource/Applications/d/Makefile b/MultiSource/Applications/d/Makefile
index 136b1ac..8e931a1 100644
--- a/MultiSource/Applications/d/Makefile
+++ b/MultiSource/Applications/d/Makefile
@@ -2,5 +2,5 @@
 PROG = make_dparser
 Source=make_dparser.c write_ctables.c gram.c lex.c lr.c arg.c parse.c scan.c symtab.c util.c version.c grammar.g.c
 CPPFLAGS =  -DD_BUILD_VERSION=5725
-RUN_OPTIONS="-v $(PROJ_SRC_DIR)/grammar.g"
+RUN_OPTIONS=-v $(PROJ_SRC_DIR)/grammar.g
 include ../../Makefile.multisrc