diff options
author | John Tapsell <johnflux@gmail.com> | 2008-09-23 19:00:42 +0300 |
---|---|---|
committer | Daniel Stone <daniel@fooishbar.org> | 2008-09-23 19:00:42 +0300 |
commit | 36e9f0d351afbf7fd2595990b2d39e7c551f6420 (patch) | |
tree | b66048ceb2bc62d7308d62b95b5663b9fbf64ed7 /util | |
parent | ace1676b0630dfe739c3bd712ed2b6e46bdb52f1 (diff) |
configure.ac: Use native compiler for build tools
makestrs is used during the build, so use the native compiler (either
gcc or cc in $PATH, can be overridden as $CC_FOR_BUILD) instead of the
(possibly cross-) compiler.
Diffstat (limited to 'util')
-rw-r--r-- | util/Makefile.am | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/util/Makefile.am b/util/Makefile.am index 2c13f0b..0d3ff01 100644 --- a/util/Makefile.am +++ b/util/Makefile.am @@ -4,6 +4,8 @@ else noinst_PROGRAMS = makestrs endif +CC = @CC_FOR_BUILD@ + EXTRA_DIST = \ Shell.ht \ StrDefs.ct \ |