Description: Fix current directory detection in Makefile.in
 PWD is set from "$(shell pwd)" which didn't work reliably. Use the variable
 CURDIR instead which exists for this purpose.
Author: Andreas Bombe <aeb@debian.org>
Last-Update: 2018-01-12
---
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
Index: git/Makefile.in
===================================================================
--- git.orig/Makefile.in	2018-05-12 04:14:00.086001402 +0200
+++ git/Makefile.in	2018-05-12 04:14:00.082001422 +0200
@@ -44,7 +44,7 @@
 
 INSTALL_PROGRAM=install -m 755
 INSTALL_DATA=install -m 644
-PWD?=$(shell pwd)
+PWD=$(CURDIR)
 DESTDIR=
 bindir=$(prefix)/bin
 libdir=$(prefix)/lib
