summaryrefslogtreecommitdiffstats
path: root/debian/_buildscripts/local/hook_examples/tdebase/pre_build.sh
diff options
context:
space:
mode:
Diffstat (limited to 'debian/_buildscripts/local/hook_examples/tdebase/pre_build.sh')
-rwxr-xr-xdebian/_buildscripts/local/hook_examples/tdebase/pre_build.sh16
1 files changed, 0 insertions, 16 deletions
diff --git a/debian/_buildscripts/local/hook_examples/tdebase/pre_build.sh b/debian/_buildscripts/local/hook_examples/tdebase/pre_build.sh
deleted file mode 100755
index e764c29ad..000000000
--- a/debian/_buildscripts/local/hook_examples/tdebase/pre_build.sh
+++ /dev/null
@@ -1,16 +0,0 @@
-#!/bin/bash
-
-CURR_DIR=$PWD
-cd "$PKG_BUILD_PATH"
-
-# Apply patches
-if [ "$bool_COPY_PKG_SRC" = "y" ]; then
- echo -e "${CLightPurple}Applying Kate save all patch${CNone}"
- patch -p2 < "$HOOK_DIR/$PKG_NAME/018_kate_save_all.diff"
-
- echo -e "${CLightPurple}Applying SAK patch${CNone}"
- patch -p1 < "$HOOK_DIR/$PKG_NAME/tdebase-usesak.diff"
-fi
-
-cd "$CURR_DIR"
-return 0