diff options
author | Brandon Invergo <brandon@invergo.net> | 2013-05-19 15:45:36 +0200 |
---|---|---|
committer | Brandon Invergo <brandon@invergo.net> | 2013-05-19 15:45:36 +0200 |
commit | d45673c02476adb7a535fb498d45996545913ede (patch) | |
tree | 65fada2b5b9ce201c2d773b547e91fe1fc0366dc /Makefile.in | |
parent | a09f66adacac7edeedf0232bd80fe46fce3130a2 (diff) | |
download | mediagoblin-d45673c02476adb7a535fb498d45996545913ede.tar.lz mediagoblin-d45673c02476adb7a535fb498d45996545913ede.tar.xz mediagoblin-d45673c02476adb7a535fb498d45996545913ede.zip |
minor touch-ups
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/Makefile.in b/Makefile.in index baf89de8..a3f40f51 100644 --- a/Makefile.in +++ b/Makefile.in @@ -101,9 +101,12 @@ endif # 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: -# rm -rvf $(pkgpythondir) -# rm -v $(pythondir)/$(PACKAGE_DISTNAME)-*.egg-info - +# case $(prefix) in +# /usr|/usr/local ) +# exit 1 ;; +# /www/*|/srv/* ) +# rm -rvf $(prefix) ;; +# esac # Just use the usual setup.py clean command clean: @@ -132,7 +135,7 @@ check: # setup.py might complain if a directory doesn't exist so just in case, make the directory # here installdirs: - $(MKDIR_P) $(DESTDIR)$(pkgpythondir) + $(MKDIR_P) $(DESTDIR)$(prefix) # Set up PostgreSQL postgresql: |