From: Christopher Allan Webber Date: Wed, 8 Oct 2014 19:34:28 +0000 (-0500) Subject: Symlink the appropriate paste.ini X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=adecace30b787965df4c5640942fb91660ccea7e;p=mediagoblin.git Symlink the appropriate paste.ini --- 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