Replace the perl character classes with POSIX ones to fix the build when sed is a BSD sed instead of GNU.
Signed-off-by: Tamar Christina <tamar.christina@arm.com>
This commit is contained in:
parent
cff8513220
commit
9eafa44d23
|
@ -20,10 +20,10 @@ multi-do:
|
||||||
cp config.status $${destpre}; \
|
cp config.status $${destpre}; \
|
||||||
cd $${destpre}; \
|
cd $${destpre}; \
|
||||||
$(SHELL) config.status; \
|
$(SHELL) config.status; \
|
||||||
sed -e "s:^MULTIDIRS\s*+=.*$$:MULTIDIRS = :" \
|
sed -e "s:^MULTIDIRS[[:space:]]*+=.*$$:MULTIDIRS = :" \
|
||||||
-e "s:^MULTILIBNAME\s*=.*$$:MULTILIBNAME = MULTIDIR_$${dir}_NAME:" \
|
-e "s:^MULTILIBNAME[[:space:]]*=.*$$:MULTILIBNAME = MULTIDIR_$${dir}_NAME:" \
|
||||||
-e "s:^MULTI_FLAGS_FOR_TARGET\s*=.*$$:MULTI_FLAGS_FOR_TARGET = MULTIDIR_$${dir}_FLAGS:" \
|
-e "s:^MULTI_FLAGS_FOR_TARGET[[:space:]]*=.*$$:MULTI_FLAGS_FOR_TARGET = MULTIDIR_$${dir}_FLAGS:" \
|
||||||
-e "s:^objdir\s*=.*$$:objdir = ..:" \
|
-e "s:^objdir[[:space:]]*=.*$$:objdir = ..:" \
|
||||||
Makefile > Makefile.tem; \
|
Makefile > Makefile.tem; \
|
||||||
rm -f Makefile; \
|
rm -f Makefile; \
|
||||||
mv Makefile.tem Makefile; \
|
mv Makefile.tem Makefile; \
|
||||||
|
|
Loading…
Reference in New Issue