mirror of
https://github.com/erkin/ponysay.git
synced 2025-03-03 16:01:27 +01:00
Merge pull request #91 from gtmanfred/master
PREFIX and DESTDIR in the configured Makefile don't seem to work as intended
This commit is contained in:
commit
ef7d50ac03
1 changed files with 3 additions and 3 deletions
6
configure
vendored
6
configure
vendored
|
@ -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'
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue