diff options
| author | mattn <[email protected]> | 2012-04-20 10:56:12 +0900 |
|---|---|---|
| committer | mattn <[email protected]> | 2012-04-20 10:56:12 +0900 |
| commit | 975031cd2b51974f2d23834eeb502584c6442f14 (patch) | |
| tree | 8c04e6bd722c71d0ccd2255c9e29d06643a0ce9b /tools | |
| parent | e0d6430f63c4cbe0c71ce82ee23284671389a818 (diff) | |
| download | mruby-975031cd2b51974f2d23834eeb502584c6442f14.tar.gz mruby-975031cd2b51974f2d23834eeb502584c6442f14.zip | |
fix Makefile: quoted CC/LL are heap up to each Makefiles.
Diffstat (limited to 'tools')
| -rw-r--r-- | tools/mrbc/Makefile | 2 | ||||
| -rw-r--r-- | tools/mruby/Makefile | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/tools/mrbc/Makefile b/tools/mrbc/Makefile index 767f5c074..ba7764b78 100644 --- a/tools/mrbc/Makefile +++ b/tools/mrbc/Makefile @@ -37,7 +37,7 @@ else CFLAGS = -O3 endif ALL_CFLAGS = -Wall -Werror-implicit-function-declaration $(CFLAGS) -MAKE_FLAGS = --no-print-directory CC="$(CC)" LL="$(LL)" +MAKE_FLAGS = --no-print-directory CC=$(CC) LL=$(LL) ############################## # generic build targets, rules diff --git a/tools/mruby/Makefile b/tools/mruby/Makefile index 18882e4ee..dfb8b7f7c 100644 --- a/tools/mruby/Makefile +++ b/tools/mruby/Makefile @@ -45,7 +45,7 @@ else CFLAGS = -O3 endif ALL_CFLAGS = -Wall -Werror-implicit-function-declaration $(CFLAGS) -MAKE_FLAGS = --no-print-directory CC="$(CC)" LL="$(LL)" +MAKE_FLAGS = --no-print-directory CC=$(CC) LL=$(LL) ############################## # generic build targets, rules |
