diff options
author | Cem Keylan <cem@ckyln.com> | 2020-05-28 17:42:54 +0300 |
---|---|---|
committer | Cem Keylan <cem@ckyln.com> | 2020-05-28 17:42:54 +0300 |
commit | 880f0cef6ccd6e0260fb9569b08bfe4f4ee1407b (patch) | |
tree | 90bf98220b3d5d3e344734816563b9717508e4cc /core/git/build | |
parent | f243f9b393deb014f88a53d9048d31212a89bde7 (diff) | |
download | repository-880f0cef6ccd6e0260fb9569b08bfe4f4ee1407b.tar.gz |
git: move to extra
Diffstat (limited to 'core/git/build')
-rwxr-xr-x | core/git/build | 31 |
1 files changed, 0 insertions, 31 deletions
diff --git a/core/git/build b/core/git/build deleted file mode 100755 index d3001d72..00000000 --- a/core/git/build +++ /dev/null @@ -1,31 +0,0 @@ -#!/bin/sh -e - -export CFLAGS="$CFLAGS -fPIC" - -patch -p1 < git-tiny.patch - -cat > config.mak <<EOF -NO_GETTEXT=YesPlease -NO_SVN_TESTS=YesPlease -NO_TCLTK=YesPlease -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 -EOF - -./configure \ - --prefix=/usr \ - ac_cv_snprintf_returns_bogus=no \ - ac_cv_fread_reads_directories=yes - -make -make DESTDIR="$1" install - -for man in man1/*.1 man5/*.5 man7/*.7; do - install -Dm644 "$man" "$1/usr/share/man/$man" -done |