aboutsummaryrefslogtreecommitdiff
path: root/core/git/build
diff options
context:
space:
mode:
Diffstat (limited to 'core/git/build')
-rwxr-xr-xcore/git/build31
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