diff options
-rw-r--r-- | sal/util/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sal/util/Makefile b/sal/util/Makefile index 78986f793cb6..ad39b2412f63 100644 --- a/sal/util/Makefile +++ b/sal/util/Makefile @@ -33,9 +33,9 @@ all: rtlbootstrap.mk $(if $(filter-out $(COM),MSC),sal/typesizes.h) sal/udkversi sal: mkdir sal -rtlbootstrap.mk: +rtlbootstrap.mk: sal/typesizes.h (echo '#include "macro.hxx"'; echo RTL_OS:=THIS_OS; echo RTL_ARCH:=THIS_ARCH) > bootstrap.cxx - $(CXX) -E $(gb_OSDEFS) -D$(CPUNAME) -I. -I$(SRCDIR)/sal/rtl/source -I$(SRCDIR)/sal/inc bootstrap.cxx | grep '^RTL_' | sed -e 's/"//g' > $@ + $(CXX) -E $(gb_OSDEFS) $(gb_CXXFLAGS) -D$(CPUNAME) -I. -I$(SRCDIR)/sal/rtl/source -I$(SRCDIR)/sal/inc bootstrap.cxx | grep '^RTL_' | sed -e 's/"//g' > $@ sal/typesizes.h: sal ifneq ($(CROSS_COMPILING),YES) |