diff options
author | Ian Lynagh <igloo@earth.li> | 2011-04-29 14:56:31 +0100 |
---|---|---|
committer | Ian Lynagh <igloo@earth.li> | 2011-04-29 14:56:31 +0100 |
commit | a8ea6721b0477d76ec00e5daa698a5cf9cb89600 (patch) | |
tree | 426f3e2098a3d603ea1e3742d28956a3e545f3a8 /mk | |
parent | 3d8e6f6b1910080defad4ab2687255eb6e6df34b (diff) | |
download | haskell-a8ea6721b0477d76ec00e5daa698a5cf9cb89600.tar.gz |
Add ar location and details to settings file
Diffstat (limited to 'mk')
-rw-r--r-- | mk/config.mk.in | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/mk/config.mk.in b/mk/config.mk.in index 3d2d6c0798..8796ad4674 100644 --- a/mk/config.mk.in +++ b/mk/config.mk.in @@ -604,11 +604,11 @@ AR = @ArCmd@ AR_OPTS = @ArArgs@ ArSupportsAtFile = @ArSupportsAtFile@ -AR_STAGE0 = $(AR) +AR_STAGE0 = @AR_STAGE0@ AR_STAGE1 = $(AR) AR_STAGE2 = $(AR) AR_STAGE3 = $(AR) -AR_OPTS_STAGE0 = $(AR_OPTS) +AR_OPTS_STAGE0 = @AR_OPTS_STAGE0@ AR_OPTS_STAGE1 = $(AR_OPTS) AR_OPTS_STAGE2 = $(AR_OPTS) AR_OPTS_STAGE3 = $(AR_OPTS) @@ -616,7 +616,7 @@ EXTRA_AR_ARGS_STAGE0 = $(EXTRA_AR_ARGS) EXTRA_AR_ARGS_STAGE1 = $(EXTRA_AR_ARGS) EXTRA_AR_ARGS_STAGE2 = $(EXTRA_AR_ARGS) EXTRA_AR_ARGS_STAGE3 = $(EXTRA_AR_ARGS) -ArSupportsAtFile_STAGE0 = $(ArSupportsAtFile) +ArSupportsAtFile_STAGE0 = @ArSupportsAtFile_STAGE0@ ArSupportsAtFile_STAGE1 = $(ArSupportsAtFile) ArSupportsAtFile_STAGE2 = $(ArSupportsAtFile) ArSupportsAtFile_STAGE3 = $(ArSupportsAtFile) |