summaryrefslogtreecommitdiffstats
path: root/tags/d/debian-rules-calls-pwd.tag
diff options
context:
space:
mode:
Diffstat (limited to 'tags/d/debian-rules-calls-pwd.tag')
-rw-r--r--tags/d/debian-rules-calls-pwd.tag13
1 files changed, 13 insertions, 0 deletions
diff --git a/tags/d/debian-rules-calls-pwd.tag b/tags/d/debian-rules-calls-pwd.tag
new file mode 100644
index 0000000..c27c79b
--- /dev/null
+++ b/tags/d/debian-rules-calls-pwd.tag
@@ -0,0 +1,13 @@
+Tag: debian-rules-calls-pwd
+Severity: warning
+Check: debian/rules
+Renamed-From: debian-rules-should-not-use-pwd
+Explanation: The <code>debian/rules</code> file for this package appears to use the
+ variable $(PWD) to refer to the current directory. This variable is not
+ set by GNU make and therefore will have whatever value it has in the
+ environment, which may not be the actual current directory. Some ways of
+ building Debian packages (such as through sudo) will clear the PWD
+ environment variable.
+ .
+ Instead of $(PWD), use $(CURDIR), which is set by GNU make, ignores the
+ environment, and is guaranteed to always be set.