hooks

my cpt hooks
git clone git://git.ckyln.com/hooks
Log | Files | Refs | README

commit 6ecd8b967672a164ea5cb17074e6b962c5d8cabb
parent 699c41306451b6ea685ae4ee620372d63db4a33b
Author: Cem Keylan <cem@ckyln.com>
Date:   Thu, 15 Apr 2021 22:23:00 +0300

bash: remove pre-build hook

Diffstat:
Dpre-build/bash | 21---------------------
1 file changed, 0 insertions(+), 21 deletions(-)

diff --git a/pre-build/bash b/pre-build/bash @@ -1,21 +0,0 @@ -cat <<EOF> .build.cpt -#!/bin/sh -e - -for patch in bash50-0??; do - patch -p0 < "\$patch" -done - -export LDFLAGS=-static - -./configure \ - --prefix=/usr \ - --without-bash-malloc \ - --disable-nls - -export MAKEFLAGS="TERMCAP_LIB=/usr/lib/libncursesw.a $MAKEFLAGS" - -make -make DESTDIR="\$1" install - -ln -s bash "\$1/usr/bin/sh" -EOF