File: no_svnversion.patch

package info (click to toggle)
cufflinks 2.2.1%2Bdfsg.1-9
  • links: PTS, VCS
  • area: non-free
  • in suites: bookworm
  • size: 4,336 kB
  • sloc: cpp: 57,165; ansic: 12,297; python: 516; makefile: 241; sh: 59
file content (25 lines) | stat: -rw-r--r-- 803 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
Description: Prevent that AM_INIT_AUTOMAKE is called twice
Bug-Debian: https://bugs.debian.org/998241
Author: Andreas Tille <tille@debian.org>
Last-Update: Tue, 02 Nov 2021 12:00:24 +0100

--- a/configure.ac
+++ b/configure.ac
@@ -6,14 +6,14 @@ m4_include([ax_bam.m4])
 m4_include([ax_check_zlib.m4])
 m4_include([ax_check_eigen.m4])
 
-define([svnversion], esyscmd([sh -c "svnversion|tr -d '\n'"]))dnl
+#define([svnversion], esyscmd([sh -c "svnversion|tr -d '\n'"]))dnl
 AC_INIT([cufflinks], [2.2.1], [cole@cs.umd.edu])
-AC_DEFINE(SVN_REVISION, "svnversion", [SVN Revision])
+AC_DEFINE(SVN_REVISION, "Debian package", [Debian package])
 
 AC_CONFIG_SRCDIR([config.h.in])
 AC_CONFIG_HEADERS([config.h])
 AC_CONFIG_AUX_DIR([build-aux])
-AM_INIT_AUTOMAKE
+# AM_INIT_AUTOMAKE
 
 #AM_PATH_CPPUNIT(1.10.2)