File: 07-autogen-noconfigure.patch

package info (click to toggle)
agg 1%3A2.7.0.r145%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 8,300 kB
  • sloc: cpp: 70,849; ansic: 13,038; makefile: 3,690; sh: 26
file content (15 lines) | stat: -rw-r--r-- 507 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
Author: Andrea Veri <and@debian.org>
Description: Disable configure's run from the autogen file.

Index: agg-2.5+dfsg1/autogen.sh
===================================================================
--- agg-2.5+dfsg1.orig/autogen.sh	2007-10-11 00:06:16.000000000 +0200
+++ agg-2.5+dfsg1/autogen.sh	2012-05-01 16:57:37.916862783 +0200
@@ -18,6 +18,6 @@
 automake --foreign --add-missing --ignore-deps
 
 # and finally invoke our new configure
-./configure $*
+[ -n "$NOCONFIGURE" ] || ./configure $*
 
 # end