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

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