summaryrefslogtreecommitdiff
path: root/solenv/inc/startup
diff options
context:
space:
mode:
authorsb <sb@openoffice.org>2010-01-12 23:44:34 +0100
committersb <sb@openoffice.org>2010-01-12 23:44:34 +0100
commit50c421d7f4d3549cc1b02981066926311931a7a6 (patch)
tree8c870be5f882826b4076989bd711349f057c2b01 /solenv/inc/startup
parent52fae281f682eeab8aca602b28fa09b8167d06f8 (diff)
#i108269# work around spurious dmake problems with whitespace before macro definitions
Diffstat (limited to 'solenv/inc/startup')
-rw-r--r--solenv/inc/startup/startup.mk24
1 files changed, 12 insertions, 12 deletions
diff --git a/solenv/inc/startup/startup.mk b/solenv/inc/startup/startup.mk
index bd9fb0f61ef3..b4aa9a74353a 100644
--- a/solenv/inc/startup/startup.mk
+++ b/solenv/inc/startup/startup.mk
@@ -50,27 +50,27 @@ OS_variable_needed
# ----------------- Default Control Macro definitions -----------------------
# Select appropriate defaults for basic macros
- MAKE *= $(MAKECMD) $(MFLAGS)
- TMPDIR *:= $/tmp
- DIVFILE *= $(TMPFILE)
+MAKE *= $(MAKECMD) $(MFLAGS)
+TMPDIR *:= $/tmp
+DIVFILE *= $(TMPFILE)
MAXLINELENGTH = 65530
# Recipe execution configuration
- SHELL := $(OOO_SHELL)
- SHELLFLAGS := -c
- SHELLMETAS := !"\#$$%&'()*;<=>?[\]`{{|}}~
+SHELL := $(OOO_SHELL)
+SHELLFLAGS := -c
+SHELLMETAS := !"\#$$%&'()*;<=>?[\]`{{|}}~
# the colon (":") utility is typically only available as a shell built-in,
# so it should be included in SHELLMETAS; however, this would result in very
# many false positives on Windows where ":" is used in drive letter notation
- GROUPSHELL := $(SHELL)
- GROUPFLAGS :=
- GROUPSUFFIX :=
+GROUPSHELL := $(SHELL)
+GROUPFLAGS :=
+GROUPSUFFIX :=
# Intermediate target removal configuration
- RM *:= rm
- RMFLAGS *= -f
- RMTARGET *= $<
+RM *:= rm
+RMFLAGS *= -f
+RMTARGET *= $<
# Default recipe that is used to remove intermediate targets.
.REMOVE :; #echo dummy remove #$(RM) $(RMFLAGS) $(RMTARGET)