# HG changeset patch # User John Bailey # Date 1207879722 0 # Node ID 589803e5ce7b158cea52ffdcf75b502856135019 # Parent 2804e45e77f6fcc2418d277139fb7705509abb8e I've personally seen a few people have problems because they tried to build from a path containing spaces. After seeing the ticket on trac dealing with that, I decided to put this hack in. Anyone who doesn't want this should feel free to make use of 'mtn disapprove'. Fixes #2949. diff -r 2804e45e77f6 -r 589803e5ce7b configure.ac --- a/configure.ac Wed Apr 09 22:01:41 2008 +0000 +++ b/configure.ac Fri Apr 11 02:08:42 2008 +0000 @@ -64,6 +64,14 @@ AC_INIT([pidgin], [purple_display_version], [devel@pidgin.im]) +if test `pwd | wc -w` -ne 1; then + AC_MSG_ERROR([ +You are attempting to build in a path that contains spaces. This +will fail. Relocate this source tree to a path that does not contain +spaces and run configure again. +]) +fi + AC_CANONICAL_SYSTEM AM_CONFIG_HEADER(config.h) AM_INIT_AUTOMAKE(AC_PACKAGE_NAME, AC_PACKAGE_VERSION)