Blame SOURCES/0001-Drop-DESTDIR-from-python-instlibdir.patch

fdd391
From d40d33173dc24d9b7ad6f5071994f90b5f9a71e8 Mon Sep 17 00:00:00 2001
fdd391
From: Todd Zullinger <tmz@pobox.com>
fdd391
Date: Wed, 27 Mar 2013 14:01:57 -0400
fdd391
Subject: [PATCH] Drop DESTDIR from python instlibdir
fdd391
fdd391
When building packages, we install to DESTDIR but we don't want this to
fdd391
end up hard-coded in the scripts.
fdd391
fdd391
This needs discussed upstream to find a proper solution.
fdd391
---
fdd391
 git_remote_helpers/Makefile | 2 +-
fdd391
 1 file changed, 1 insertion(+), 1 deletion(-)
fdd391
fdd391
diff --git a/git_remote_helpers/Makefile b/git_remote_helpers/Makefile
fdd391
index 3d12232..36d40b5 100644
fdd391
--- a/git_remote_helpers/Makefile
fdd391
+++ b/git_remote_helpers/Makefile
fdd391
@@ -38,7 +38,7 @@ install: $(pysetupfile)
fdd391
 	$(PYTHON_PATH) $(pysetupfile) install --prefix $(DESTDIR_SQ)$(prefix)
fdd391
 
fdd391
 instlibdir: $(pysetupfile)
fdd391
-	@echo "$(DESTDIR_SQ)$(prefix)/$(PYLIBDIR)"
fdd391
+	@echo "$(prefix)/$(PYLIBDIR)"
fdd391
 
fdd391
 clean:
fdd391
 	$(QUIET)$(PYTHON_PATH) $(pysetupfile) $(QUIETSETUP) clean -a
fdd391
-- 
fdd391
1.8.1
fdd391