diff options
author | Christopher Allan Webber <cwebber@dustycloud.org> | 2014-10-10 10:21:04 -0500 |
---|---|---|
committer | Christopher Allan Webber <cwebber@dustycloud.org> | 2014-10-10 14:42:18 -0500 |
commit | 2b475821a19083ec40859ccdb8fbc645d4ee6665 (patch) | |
tree | b6abb651abfd5b88406e3603fdcf91639d4fbaa9 /Makefile.in | |
parent | 0e58f8105f2a1772af1f36c8287dca3475731730 (diff) | |
download | mediagoblin-2b475821a19083ec40859ccdb8fbc645d4ee6665.tar.lz mediagoblin-2b475821a19083ec40859ccdb8fbc645d4ee6665.tar.xz mediagoblin-2b475821a19083ec40859ccdb8fbc645d4ee6665.zip |
Remove the paste.ini rule.
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 21 |
1 files changed, 11 insertions, 10 deletions
diff --git a/Makefile.in b/Makefile.in index 05a001bf..d266cc12 100644 --- a/Makefile.in +++ b/Makefile.in @@ -85,21 +85,12 @@ installdirs i18n virtualenv all: develop -develop: $(maybe_venv_dep) i18n paste.ini mediagoblin.ini +develop: $(maybe_venv_dep) i18n mediagoblin.ini # NEVER clobber a user's mediagoblin.ini once they've defined it mediagoblin.ini: cp --no-clobber mediagoblin.example.ini mediagoblin.ini -# We just symlink the mediagoblin from the appropriate python version -# Note, we DO clobber paste.ini ... -paste.ini: -ifeq ($(USE_PYTHON3),true) - ln -s paste.py3.ini paste.ini -else - ln -s paste.py2.ini paste.ini -endif - # base-configs: paste.ini mediagoblin.example.ini install: installdirs @@ -157,6 +148,12 @@ distclean: $(maybe_venv_clean) rm -vf $(srcdir)/Makefile +########################################################################### +# These things aren't really tested / supported yet. +########################################################################### + + + # You can either use the setup.py sdist command or you can roll your own here dist: # $(maybe_venved_python) setup.py sdist @@ -187,6 +184,10 @@ installdirs: # endif # $(prefix)/bin/gmg dbupdate +###################### +# Needs to be updated? +###################### + # The following show how to install documentation. In this example, # docs are built from a separate Makefile contained in the docs # directory which uses the SPHINXBUILD variable to store the location |