diff options
author | Bent Bisballe Nyeng <deva@aasimon.org> | 2013-12-05 19:46:13 +0100 |
---|---|---|
committer | Bent Bisballe Nyeng <deva@aasimon.org> | 2013-12-05 19:46:13 +0100 |
commit | 5536098ccad9aeaa88e1b3d8c86348ff6cadf25e (patch) | |
tree | ae343b79adf25a816e74cbb5965a3e00857c1917 | |
parent | 7d8a2d6e4404a52c712b4db5caf6d21b43ed5721 (diff) |
Add alternative to missing m4_esyscmd_s in autoconf 2.63.
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index f8c4ead..c4ea9e1 100644 --- a/configure.ac +++ b/configure.ac @@ -1,6 +1,6 @@ # Filename: configure.in -AC_INIT([drumgizmo], m4_esyscmd_s([cat version.h | cut -d'"' -f2])) +AC_INIT([drumgizmo], m4_esyscmd([cat version.h | cut -d'"' -f2 | xargs echo -n])) AC_CONFIG_SRCDIR([src/drumgizmo.cc]) AM_INIT_AUTOMAKE |