aboutsummaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
authorMattias Andrée <maandree@operamail.com>2012-08-27 17:32:26 +0200
committerMattias Andrée <maandree@operamail.com>2012-08-27 17:32:26 +0200
commita3447540e1e3113416e613405cc95a6bc1dd13b2 (patch)
tree4f3550deb86830d2b5a9af1e03d92a5b6f0562b4 /configure
parent6fef59fc47beb30b4664bdb5e693e7e4ab4ffabe (diff)
downloadponysay-a3447540e1e3113416e613405cc95a6bc1dd13b2.tar.gz
ponysay-a3447540e1e3113416e613405cc95a6bc1dd13b2.tar.bz2
ponysay-a3447540e1e3113416e613405cc95a6bc1dd13b2.zip
make fix
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure6
1 files changed, 4 insertions, 2 deletions
diff --git a/configure b/configure
index d831985..7ac2b50 100755
--- a/configure
+++ b/configure
@@ -12,9 +12,11 @@ function makeMakefile()
echo
echo -e 'default: all\n'
echo -e 'all: build\n'
- for func in $(echo 'build' 'prebuilt' 'install' 'uninstall' 'uninstall-old' 'clean' 'clean-old' 'view'); do
- echo -e "$func"':\n\t./setup.py $(PARAMS) '"$func"'\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'
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'
}