pidgin: 7d753f01: I've personally seen a few people have p...
rekkanoryo at pidgin.im
rekkanoryo at pidgin.im
Thu Apr 10 22:10:43 EDT 2008
-----------------------------------------------------------------
Revision: 7d753f01538518ccca8674df55a224c1ae3a0b68
Ancestor: f5c6fb88c6e0063819e6a7b9a35c412cea8a1f81
Author: rekkanoryo at pidgin.im
Date: 2008-04-11T02:08:42
Branch: im.pidgin.pidgin
URL: http://d.pidgin.im/viewmtn/revision/info/7d753f01538518ccca8674df55a224c1ae3a0b68
Modified files:
configure.ac
ChangeLog:
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.
-------------- next part --------------
============================================================
--- configure.ac 2fb6689b922a99b85b93f8e09425d84e5965a4d0
+++ configure.ac ea2b8f8c7e107ff9b9159c1824403b6fbaaf5dd5
@@ -64,6 +64,14 @@ AC_INIT([pidgin], [purple_display_versio
AC_INIT([pidgin], [purple_display_version], [devel at 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)
More information about the Commits
mailing list