diff options
author | Jeff King <peff@peff.net> | 2012-06-20 14:31:55 -0400 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2012-07-09 08:57:52 -0700 |
commit | be1dbd0a933749526eb763fd00cd00c0bdf7c7a6 (patch) | |
tree | 1e1fc91d5703f50b073d3d422430c4da6d3d80cd /.gitignore | |
parent | 33ddbcb01208f93c20ac4b904ad3d76777144882 (diff) | |
download | git-be1dbd0a933749526eb763fd00cd00c0bdf7c7a6.tar.gz |
Makefile: split prefix flags from GIT-CFLAGS
Most of the build targets do not care about the setting of
$prefix (or its derivative variables), but will be rebuilt
if the prefix changes. For most setups this doesn't matter
(they set prefix once and never change it), but for a setup
which puts each branch or version in its own prefix, this
unnecessarily causes a full rebuild whenever the branc is
changed.
Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to '.gitignore')
-rw-r--r-- | .gitignore | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore index 7329cfe5c3..c60c5a323f 100644 --- a/.gitignore +++ b/.gitignore @@ -2,6 +2,7 @@ /GIT-CFLAGS /GIT-LDFLAGS /GIT-GUI-VARS +/GIT-PREFIX /GIT-USER-AGENT /GIT-VERSION-FILE /bin-wrappers/ |