summaryrefslogtreecommitdiff
path: root/acprep
diff options
context:
space:
mode:
Diffstat (limited to 'acprep')
-rwxr-xr-xacprep15
1 files changed, 7 insertions, 8 deletions
diff --git a/acprep b/acprep
index effbeb3b..80761626 100755
--- a/acprep
+++ b/acprep
@@ -1,7 +1,5 @@
#!/bin/sh
-PYTHON_HOME="/Library/Frameworks/Python.framework/Versions/2.5"
-
# acprep, version 3.0
#
# This script configures my ledger source tree on my Mac OS/X machine.
@@ -18,13 +16,14 @@ fi
autoreconf --force --install
-INCDIRS="-I/usr/local/include"
-INCDIRS="$INCDIRS -I/usr/local/include/boost"
-INCDIRS="$INCDIRS -I/sw/include"
-INCDIRS="$INCDIRS -I/usr/include/httpd/xml"
+INCDIRS="-I/sw/include"
+INCDIRS="$INCDIRS -I/usr/local/include"
+
+LIBDIRS="-L/sw/lib"
+LIBDIRS="$LIBDIRS -L/usr/local/lib"
+
+PYTHON_HOME="/Library/Frameworks/Python.framework/Versions/2.5"
-LIBDIRS="-L/usr/local/lib"
-LIBDIRS="$LIBDIRS -L/sw/lib"
SYSTEM=`uname -s`