diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2011-12-06 09:51:04 -0800 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2011-12-06 09:51:04 -0800 |
commit | 934046df33d87c3c466ea338e08829c3bb7fe356 (patch) | |
tree | e6ee9141a2a9cd71236a7e97f5af646663aae925 /configure | |
parent | 664957c34fedabeb853151a87e0516e0b9def888 (diff) | |
download | txr-934046df33d87c3c466ea338e08829c3bb7fe356.tar.gz txr-934046df33d87c3c466ea338e08829c3bb7fe356.tar.bz2 txr-934046df33d87c3c466ea338e08829c3bb7fe356.zip |
2011-12-06 Kaz Kylheku <kaz@kylheku.com>
* configure: Forgot to treat octal number in the processing
of conftest.syms. Removed useless eval.
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -720,10 +720,10 @@ char sizeof_wchar_t[sizeof (wchar_t)]; sizeof_wchar_t=0 while read symbol type offset size ; do - eval "size=$(( 0$size + 0 ))" + size=$(( 0$size + 0 )) symbol=${symbol#_} if [ "$type" = "C" ] ; then - size=$offset + size=$(( 0$offset + 0 )) fi case "$symbol" in sizeof* ) |