diff options
author | Bogdan Drozdowski <bogdandr # op . pl> | 2009-08-12 19:32:16 +0200 |
---|---|---|
committer | Peter Simons <simons@cryp.to> | 2009-08-12 21:16:52 +0200 |
commit | 09d9337cd20efd16e7c02a53d69e6aade67aa57b (patch) | |
tree | 4debbbd6ba2df2b8c5cd8c4f14675f432a06259a /m4/ax_prog_masm.m4 | |
parent | 8c95594c0b5ec73798ce23f628b2c11af1d6eb64 (diff) | |
download | autoconf-archive-09d9337cd20efd16e7c02a53d69e6aade67aa57b.tar.gz |
Improved portability.
Diffstat (limited to 'm4/ax_prog_masm.m4')
-rw-r--r-- | m4/ax_prog_masm.m4 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/m4/ax_prog_masm.m4 b/m4/ax_prog_masm.m4 index ca4bcc3..e032cec 100644 --- a/m4/ax_prog_masm.m4 +++ b/m4/ax_prog_masm.m4 @@ -50,7 +50,7 @@ AC_DEFUN([AX_PROG_MASM],[ AC_CHECK_PROGS(masm,[ml masm ml32 ml64 masm32],no) -if test $masm = "no" ; +if test "x$masm" = "xno" ; then ifelse($#,0,[AC_MSG_ERROR([MASM assembler not found])], $1) |