diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2005-09-17 00:42:05 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:38:13 -0500 |
commit | 3a4da8c0dbe1d50ca4de013fdb7c860a5196f4ca (patch) | |
tree | e106776239615391608d99554a8cee39b731d56a /source4/build/m4 | |
parent | 5c708830bc07e1b59c063ae1c04b8fdf2b972318 (diff) | |
download | samba-3a4da8c0dbe1d50ca4de013fdb7c860a5196f4ca.tar.gz samba-3a4da8c0dbe1d50ca4de013fdb7c860a5196f4ca.tar.bz2 samba-3a4da8c0dbe1d50ca4de013fdb7c860a5196f4ca.zip |
r10283: Eliminate some more use of autoconf substitution variables.
Add makefile rule for '.ho' files (compiled with host compiler). This
does not allow for cross-compiling yet as that requires a HOSTLD as well.
(This used to be commit c675ba0ee437ade4abe839a2fb193b9e3a98a3de)
Diffstat (limited to 'source4/build/m4')
-rw-r--r-- | source4/build/m4/check_cc.m4 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source4/build/m4/check_cc.m4 b/source4/build/m4/check_cc.m4 index 19261d50b6..8bc160eb82 100644 --- a/source4/build/m4/check_cc.m4 +++ b/source4/build/m4/check_cc.m4 @@ -29,9 +29,9 @@ AC_ISC_POSIX dnl Check if C compiler understands -c and -o at the same time AC_PROG_CC_C_O if eval "test \"`echo '$ac_cv_prog_cc_'${ac_cc}_c_o`\" = no"; then - BROKEN_CC= + BROKEN_CC=no else - BROKEN_CC=# + BROKEN_CC=yes fi AC_SUBST(BROKEN_CC) |