aboutsummaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
authorDaniel Wallace <daniel.wallace@gatech.edu>2012-08-27 14:24:49 -0400
committerDaniel Wallace <daniel.wallace@gatech.edu>2012-08-27 14:24:49 -0400
commit80f396c884d6179d788ad08a55f2595586d8c58b (patch)
treec17abfb61737fcfb3155c4e70209e78dfd60605e /configure
parent28d8263093b1fd3ff90dc3a7ab0a184684ea6a34 (diff)
downloadponysay-80f396c884d6179d788ad08a55f2595586d8c58b.tar.gz
ponysay-80f396c884d6179d788ad08a55f2595586d8c58b.tar.bz2
ponysay-80f396c884d6179d788ad08a55f2595586d8c58b.zip
fixing configure arguments that don't do anything
PREFIX and DESTDIR do not appear to work the way they were intended
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure6
1 files changed, 3 insertions, 3 deletions
diff --git a/configure b/configure
index 7ac2b50..2cb14e4 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'
}