diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2010-05-20 19:26:33 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2010-05-20 19:26:33 +0000 |
commit | 2766f67a91e12c9f57d0bc2fdb3765798e6e2080 (patch) | |
tree | 5a8fffeedc5249ba97c335abdf056efcc7cfef94 /gnu/usr.bin/perl/lib/Config_git.pl | |
parent | f2ebbd918a1eb3f186ebafdc6e398cd63e30713f (diff) |
We have a copy of git_version.h in src so that we can build libperl
with out own rules but apparently this causes problems after
git_version.h is generated in the obj dir. This will only ever be
a stub as we build from a release, not a git checkout. Add a
pre-generated lib/Config_git.pl and prevent git_version.h and
Config_git.pl from being removed by the clean target.
Appears to fix parallel make issues. OK oga@
Diffstat (limited to 'gnu/usr.bin/perl/lib/Config_git.pl')
-rw-r--r-- | gnu/usr.bin/perl/lib/Config_git.pl | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/gnu/usr.bin/perl/lib/Config_git.pl b/gnu/usr.bin/perl/lib/Config_git.pl new file mode 100644 index 00000000000..6aacc4c1f4d --- /dev/null +++ b/gnu/usr.bin/perl/lib/Config_git.pl @@ -0,0 +1,12 @@ +###################################################################### +# WARNING: 'lib/Config_git.pl' is generated by make_patchnum.pl +# DO NOT EDIT DIRECTLY - edit make_patchnum.pl instead +###################################################################### +$Config::Git_Data=<<'ENDOFGIT'; +git_commit_id='' +git_describe='' +git_branch='' +git_uncommitted_changes='' +git_commit_id_title='' + +ENDOFGIT |