aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHans-Christoph Steiner <eighthave@users.sourceforge.net>2010-01-28 02:58:48 +0000
committerHans-Christoph Steiner <eighthave@users.sourceforge.net>2010-01-28 02:58:48 +0000
commit7cac5eab9258080050c1428952ab735bb2e7dfad (patch)
tree328789744acc4c82c60b10cd1d4d5886a0b2a1b4
parentca43bbd027f5ae35e27583594da0664d58fa4aef (diff)
fixed test for pd dir and added more text for universal building
svn path=/trunk/externals/io/hidio/; revision=13112
-rw-r--r--configure.ac4
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac
index 0c821e3..5d02ae4 100644
--- a/configure.ac
+++ b/configure.ac
@@ -50,7 +50,7 @@ AC_ARG_WITH([pd],
if test "z$with_pd" != "z"; then
if test "z${with_pd%%/*}" = "z" ; then
# it's an absolute path
- if test -f $with_pd ; then
+ if test -d $with_pd ; then
PD_PATH=$with_pd
else
AC_MSG_ERROR([The file \"$with_pd\" does not exist.])
@@ -73,7 +73,7 @@ fi
AC_ARG_ENABLE([universal],
[AS_HELP_STRING([--enable-universal],
- [build universal binary on Mac OS X])],
+ [build universal binary on Mac OS X (use with --disable-dependency-tracking)])],
[universal=$enableval], [universal=no])
AM_CONDITIONAL(UNIVERSAL, test x$universal = xyes)
if test x$universal = xyes; then