From 5badb37d74205b546a4454eafc8ca195d6a8a7c9 Mon Sep 17 00:00:00 2001 From: Pierre Ossman Date: Fri, 19 Mar 2010 15:35:14 +0000 Subject: [PATCH] Make autoconf and friends do the right thing and don't recurse above our top directories. git-svn-id: svn://svn.code.sf.net/p/tigervnc/code/branches/1_0@4009 3789f03b-4d11-0410-bbf8-ca57d06f2519 --- common/configure.ac | 1 + unix/configure.ac | 1 + 2 files changed, 2 insertions(+) diff --git a/common/configure.ac b/common/configure.ac index 675864ee..26b3eede 100644 --- a/common/configure.ac +++ b/common/configure.ac @@ -1,6 +1,7 @@ dnl Process this file with autoconf to produce a configure script. AC_PREREQ([2.57]) AC_INIT([librfb], [1.0.1], [http://www.tigervnc.org]) +AC_CONFIG_AUX_DIR([.]) AM_INIT_AUTOMAKE([-Wall foreign dist-bzip2]) diff --git a/unix/configure.ac b/unix/configure.ac index 33bf36fa..cbaf679b 100644 --- a/unix/configure.ac +++ b/unix/configure.ac @@ -1,6 +1,7 @@ dnl Process this file with autoconf to produce a configure script. AC_PREREQ([2.57]) AC_INIT([tigervnc], [1.0.1], [http://www.tigervnc.org]) +AC_CONFIG_AUX_DIR([.]) AM_INIT_AUTOMAKE([-Wall foreign dist-bzip2]) AC_SUBST([COMMON_DIR], ['$(top_srcdir)/../common']) -- 2.39.5