diff options
author | Hans-Joachim Lankenau <hjs@openoffice.org> | 2002-07-17 09:52:00 +0000 |
---|---|---|
committer | Hans-Joachim Lankenau <hjs@openoffice.org> | 2002-07-17 09:52:00 +0000 |
commit | 571b2246dc350e2e781ea49d99de47ec9456633b (patch) | |
tree | 918deb18f0813c1e34ebfb73e5aac718b5d3603d /idlc/source/makefile.mk | |
parent | 14718503eb5b574f9e0c52c68c13a41d3073bfc4 (diff) |
#100157# check for USE_SHELL
Diffstat (limited to 'idlc/source/makefile.mk')
-rw-r--r-- | idlc/source/makefile.mk | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/idlc/source/makefile.mk b/idlc/source/makefile.mk index 61df6c2e8cf2..f84b0365cc3b 100644 --- a/idlc/source/makefile.mk +++ b/idlc/source/makefile.mk @@ -2,9 +2,9 @@ # # $RCSfile: makefile.mk,v $ # -# $Revision: 1.5 $ +# $Revision: 1.6 $ # -# last change: $Author: hjs $ $Date: 2002-07-10 09:53:15 $ +# last change: $Author: hjs $ $Date: 2002-07-17 10:52:00 $ # # The Contents of this file are made available subject to the terms of # either of the following licenses @@ -138,10 +138,10 @@ APP1STDLIBS=\ .INCLUDE : target.mk $(MISC)$/stripped_scanner.ll : scanner.ll -.IF "$(GUI)"=="WNT" - +cat scanner.ll > $(MISC)$/stripped_scanner.ll -.ELSE +.IF "$(GUI)"=="UNX" || "$(USE_SHELL)" != "4nt" +tr -d "\015" < scanner.ll > $(MISC)$/stripped_scanner.ll +.ELSE + +cat scanner.ll > $(MISC)$/stripped_scanner.ll .ENDIF $(MISC)$/scanner.cxx: $(MISC)$/stripped_scanner.ll |