[pisa-src] r1031 - trunk

  • From: Diego Biurrun <diego@xxxxxxxxxx>
  • To: pisa-src@xxxxxxxxxxxxx
  • Date: Tue, 06 Oct 2009 20:31:25 +0200

Author: biurrun
Date: Tue Oct  6 20:31:25 2009
New Revision: 1031

Log:
Do not pass a tarball name template to autoconf.
Autoconf is clever enough to figure the name out by itself.

Modified:
   trunk/configure.ac

Modified: trunk/configure.ac
==============================================================================
--- trunk/configure.ac  Tue Oct  6 20:30:11 2009        (r1030)
+++ trunk/configure.ac  Tue Oct  6 20:31:25 2009        (r1031)
@@ -9,7 +9,7 @@
 m4_define([PISA_VERSION_MINOR], m4_esyscmd([svn info | grep Revision: | cut 
-d' ' -f2 | tr -d '\n']))
 m4_define([PISA_VERSION], [PISA_VERSION_MAJOR.PISA_VERSION_MINOR])
 
-AC_INIT(pisa, [PISA_VERSION], pisa@xxxxxxxxxxxxx, pisa-[PISA_VERSION].tar.gz)
+AC_INIT(pisa, [PISA_VERSION], pisa@xxxxxxxxxxxxx)
 AC_CONFIG_AUX_DIR(config)
 AC_CONFIG_SRCDIR([libpisa/tunnel.c])
 AC_CONFIG_HEADERS([include/ac_config.h])

Other related posts:

  • » [pisa-src] r1031 - trunk - Diego Biurrun