build: Pass -iremap gcc option as a single argument
authorMichal Sojka <sojkam1@fel.cvut.cz>
Thu, 2 Feb 2017 11:13:03 +0000 (12:13 +0100)
committerFelix Fietkau <nbd@nbd.name>
Thu, 9 Feb 2017 13:49:34 +0000 (14:49 +0100)
commit202ae4cc6a910dec2441c45dfdf5814ac4d82518
tree5f8d14e7030da75147c080a533582329fb87bfa6
parent7096ed58fdc908144d2c52bf416e9b3b0e48795a
build: Pass -iremap gcc option as a single argument

Passing -iremap argument separately causes problems with projects that
use scons and its ParseFlags function. Consider this SConscript
example:

    env = Environment()
    d = env.ParseFlags("-iremap one:two")

ParseFlags will interpret one:two as a file name and the returned dict
d will contain only "-iremap". When the -iremap is passed to the
compiler without an argument, compilation obviously fails.

Signed-off-by: Michal Sojka <sojkam1@fel.cvut.cz>
rules.mk