diff options
author | Cem Keylan <cem@ckyln.com> | 2020-03-09 10:22:59 +0300 |
---|---|---|
committer | Cem Keylan <cem@ckyln.com> | 2020-03-09 10:22:59 +0300 |
commit | 3b2477252b827bc1d8acb43ac2a5c123aa793e6c (patch) | |
tree | aaff3bec3377a637954ceec06e7137a410d48c05 /core/git/build | |
parent | 302e594f9e6e932c87d5592493aa756cb97f8d49 (diff) | |
download | repository-3b2477252b827bc1d8acb43ac2a5c123aa793e6c.tar.gz |
git: add KISS patch
Diffstat (limited to 'core/git/build')
-rwxr-xr-x | core/git/build | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/core/git/build b/core/git/build index c129008c..0a8192a0 100755 --- a/core/git/build +++ b/core/git/build @@ -1,5 +1,9 @@ #!/bin/sh -e +export CFLAGS="$CFLAGS -fPIC" + +patch -p1 < git-tiny.patch + cat > config.mak <<EOF NO_GETTEXT=YesPlease NO_SVN_TESTS=YesPlease @@ -8,6 +12,7 @@ NO_EXPAT=YesPlease NO_NSEC=YesPlease NO_PYTHON=YesPlease NO_PERL=YesPlease +NO_SVN_TESTS=YesPlease NO_SYS_POLL_H=1 NO_CROSS_DIRECTORY_HARDLINKS=1 NO_INSTALL_HARDLINKS=1 |