Mercurial > hg > xemacs-beta
comparison configure.ac @ 3443:bf3ba03cef15
[xemacs-hg @ 2006-06-06 00:18:28 by james]
Change "if -z" to "if test -z". <m33bejjfyf.fsf@jerrypc.cs.usu.edu>
author | james |
---|---|
date | Tue, 06 Jun 2006 00:18:29 +0000 |
parents | a1e20876b806 |
children | 71532ccbd8e3 |
comparison
equal
deleted
inserted
replaced
3442:71c0d235a581 | 3443:bf3ba03cef15 |
---|---|
2218 | 2218 |
2219 if test -z "$with_optimization"; then | 2219 if test -z "$with_optimization"; then |
2220 # If user set --with-cflags-optimization, use it to unilaterally | 2220 # If user set --with-cflags-optimization, use it to unilaterally |
2221 # determine whether optimization should be enabled. | 2221 # determine whether optimization should be enabled. |
2222 if test "$cflags_optimization_specified" = "yes" ; then | 2222 if test "$cflags_optimization_specified" = "yes" ; then |
2223 if -z "$with_cflags_optimization" ; then | 2223 if test -z "$with_cflags_optimization" ; then |
2224 with_optimization=no | 2224 with_optimization=no |
2225 else | 2225 else |
2226 with_optimization=yes | 2226 with_optimization=yes |
2227 fi | 2227 fi |
2228 elif test -z "$emacs_is_beta" ; then | 2228 elif test -z "$emacs_is_beta" ; then |