diff options
author | Christopher Allan Webber <cwebber@dustycloud.org> | 2014-10-02 15:47:54 -0500 |
---|---|---|
committer | Christopher Allan Webber <cwebber@dustycloud.org> | 2014-10-10 14:42:16 -0500 |
commit | a9dc855ada81be28015f54481d02eea8c82572ba (patch) | |
tree | 19be22500e8f6677068f7f9ef461b85280202077 /Makefile.in | |
parent | ed48454558a91961b6e03fc51b8a4bf785d48d1e (diff) | |
download | mediagoblin-a9dc855ada81be28015f54481d02eea8c82572ba.tar.lz mediagoblin-a9dc855ada81be28015f54481d02eea8c82572ba.tar.xz mediagoblin-a9dc855ada81be28015f54481d02eea8c82572ba.zip |
Updated MediaGoblin config stuff to latest pyconfigure release
Iterating towards what we want in the configure setup.
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 20 |
1 files changed, 9 insertions, 11 deletions
diff --git a/Makefile.in b/Makefile.in index b9b91a0e..84ba3507 100644 --- a/Makefile.in +++ b/Makefile.in @@ -72,11 +72,11 @@ ifneq ($(VIRTUALENV),no) else $(PYTHON) $(srcdir)/setup.py install --prefix=$(DESTDIR)$(prefix) endif - if [[ $(DESTDIR)$(prefix) != $(abs_srcdir) ]]; then \ - $(INSTALL_DATA) $(srcdir)/Makefile $(DESTDIR)$(prefix)/Makefile; \ - $(INSTALL_DATA) $(srcdir)/lazycelery.sh $(DESTDIR)$(prefix)/lazycelery.sh; \ - $(INSTALL_DATA) $(srcdir)/lazyserver.sh $(DESTDIR)$(prefix)/lazyserver.sh; \ - fi +# if [[ $(DESTDIR)$(prefix) != $(abs_srcdir) ]]; then \ +# $(INSTALL_DATA) $(srcdir)/Makefile $(DESTDIR)$(prefix)/Makefile; \ +# $(INSTALL_DATA) $(srcdir)/lazycelery.sh $(DESTDIR)$(prefix)/lazycelery.sh; \ +# $(INSTALL_DATA) $(srcdir)/lazyserver.sh $(DESTDIR)$(prefix)/lazyserver.sh; \ +# fi # The same as "install", except use the "develop" setup.py target develop: installdirs @@ -102,13 +102,11 @@ endif # should remove a basic package installed via setup.py, but please double- and # triple-check it so that you don't remove something you shouldn't! # Be sure to remove any extra files you install, such as binaries or documentation! +# # uninstall: -# case $(prefix) in -# /usr|/usr/local ) -# exit 1 ;; -# /www/*|/srv/* ) -# rm -rvf $(prefix) ;; -# esac +# rm -rvf $(pkgpythondir) +# rm -v $(pythondir)/$(PACKAGE_DISTNAME)-*.egg-info +# # Just use the usual setup.py clean command clean: |