Package: pvpgn / 1.8.5-2.1

autoconf.patch Patch series | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
Last-Update: 2013-10-24
Forwarded: no
Author: Dmitry Smirnov <onlyjob@member.fsf.org>
Description: fix error in "configure.in"
 AC_CONFIG_AUX_DIR do not understand variables.

--- a/src/configure.in
+++ b/src/configure.in
@@ -20,10 +20,9 @@
 # Process this file with autoconf to produce a configure script.
 AC_INIT(bnetd/handle_bnet.c)
 AC_CONFIG_HEADER(config.h)
 
-AUTOCONF_CONFIG_DIR="autoconf"
-AC_CONFIG_AUX_DIR(${AUTOCONF_CONFIG_DIR})
+AC_CONFIG_AUX_DIR([autoconf])
 builtin(include,autoconf/ccstdc.m4)
 builtin(include,autoconf/mkdir.m4)
 
 AC_CANONICAL_SYSTEM