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

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