diff options
author | Christopher Allan Webber <cwebber@dustycloud.org> | 2014-10-08 14:34:28 -0500 |
---|---|---|
committer | Christopher Allan Webber <cwebber@dustycloud.org> | 2014-10-10 14:42:16 -0500 |
commit | adecace30b787965df4c5640942fb91660ccea7e (patch) | |
tree | 4c326167d9cb5358ab33faa2f53219911d9e50a7 | |
parent | 65686465e71c0ed3a55aa5b60f8d96a0df63ab21 (diff) | |
download | mediagoblin-adecace30b787965df4c5640942fb91660ccea7e.tar.lz mediagoblin-adecace30b787965df4c5640942fb91660ccea7e.tar.xz mediagoblin-adecace30b787965df4c5640942fb91660ccea7e.zip |
Symlink the appropriate paste.ini
-rw-r--r-- | Makefile.in | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/Makefile.in b/Makefile.in index 2ca4101a..4192559a 100644 --- a/Makefile.in +++ b/Makefile.in @@ -74,8 +74,6 @@ maybe_venved_python = $(PYTHON) maybe_venv_dep = endif - - .PHONY: all install uninstall distclean info install-html html \ install-pdf pdf install-dvi dvi install-ps ps clean dist check \ installdirs i18n virtualenv @@ -83,8 +81,14 @@ installdirs i18n virtualenv all: develop -develop: $(maybe_venv_dep) i18n - echo "nothin yet" +develop: $(maybe_venv_dep) i18n paste.ini + +paste.ini: +ifeq ($(USE_PYTHON3),yes) + -ln -s paste.py3.ini paste.ini +else + -ln -s paste.py2.ini paste.ini +endif # base-configs: paste.ini mediagoblin.example.ini |