From 80f396c884d6179d788ad08a55f2595586d8c58b Mon Sep 17 00:00:00 2001
From: Daniel Wallace <daniel.wallace@gatech.edu>
Date: Mon, 27 Aug 2012 14:24:49 -0400
Subject: [PATCH] fixing configure arguments that don't do anything

PREFIX and DESTDIR do not appear to work the way they were intended
---
 configure | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/configure b/configure
index 7ac2b509..2cb14e49 100755
--- a/configure
+++ b/configure
@@ -13,10 +13,10 @@ function makeMakefile()
     echo -e 'default: all\n'
     echo -e 'all: build\n'
     for func in $(echo 'build' 'prebuilt' 'uninstall' 'uninstall-old' 'clean' 'clean-old' 'view'); do
-	echo -e "$func"':\n\t./setup.py ---DESTDIR="$(DESTDIR)" ---PREFIX="$(PREFIX)" $(PARAMS) '"$func"'\n'
+	echo -e "$func"':\n\t./setup.py --dest-dir="$(DESTDIR)" --prefix="$(PREFIX)" $(PARAMS) '"$func"'\n'
     done
-    echo -e 'install-build:\n\t./setup.py ---DESTDIR="$(DESTDIR)" ---PREFIX="$(PREFIX)" $(PARAMS) install\n'
-    echo -e 'install:\n\t./setup.py ---DESTDIR="$(DESTDIR)" ---PREFIX="$(PREFIX)" $(PARAMS) prebuilt\n'
+    echo -e 'install-build:\n\t./setup.py --dest-dir="$(DESTDIR)" --prefix="$(PREFIX)" $(PARAMS) install\n'
+    echo -e 'install:\n\t./setup.py --dest-dir="$(DESTDIR)" --prefix="$(PREFIX)" $(PARAMS) prebuilt\n'
 }