projects
/
mesa.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
199b089
)
autoconf: Also strip '\r' character in version scrape.
author
Vinson Lee
<vlee@vmware.com>
Tue, 11 May 2010 19:33:30 +0000
(12:33 -0700)
committer
Vinson Lee
<vlee@vmware.com>
Tue, 11 May 2010 19:33:30 +0000
(12:33 -0700)
Fixes autoconf GCC conftest.c test on Cygwin.
configure.ac
patch
|
blob
|
history
diff --git
a/configure.ac
b/configure.ac
index 83aa31d3bdef6036f0565468859ef75e8759e49b..3207c9f718a2154f71b25eaa246e650b7d6d49f5 100644
(file)
--- a/
configure.ac
+++ b/
configure.ac
@@
-4,7
+4,7
@@
AC_PREREQ([2.59])
dnl Versioning - scrape the version from configs/default
m4_define([mesa_version],
- [m4_esyscmd([${MAKE-make} -s -f bin/version.mk version | tr -d '\n'])])
+ [m4_esyscmd([${MAKE-make} -s -f bin/version.mk version | tr -d '\n'
| tr -d '\r'
])])
m4_ifval(mesa_version,,
[m4_fatal([Failed to get the Mesa version from `make -f bin/version.mk version`])])