summaryrefslogtreecommitdiff
path: root/scripts/prep-librewolf-dpkg.sh
diff options
context:
space:
mode:
authorB. Stack <bgstack15@gmail.com>2021-08-23 11:37:27 -0400
committerB. Stack <bgstack15@gmail.com>2021-08-23 11:37:27 -0400
commit65e959df9482b8991f607ec6521c3d2065ae313c (patch)
treeeac577ea0dac0e5b5a26ad4f12ff6d4a2a01c46a /scripts/prep-librewolf-dpkg.sh
parentjust use it directly, does not work in archive anyway (diff)
downloadlibrewolf-debian-65e959df9482b8991f607ec6521c3d2065ae313c.tar.gz
librewolf-debian-65e959df9482b8991f607ec6521c3d2065ae313c.tar.bz2
librewolf-debian-65e959df9482b8991f607ec6521c3d2065ae313c.zip
first attempt
Diffstat (limited to 'scripts/prep-librewolf-dpkg.sh')
-rwxr-xr-xscripts/prep-librewolf-dpkg.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/scripts/prep-librewolf-dpkg.sh b/scripts/prep-librewolf-dpkg.sh
index b6c2e5e..9bd569a 100755
--- a/scripts/prep-librewolf-dpkg.sh
+++ b/scripts/prep-librewolf-dpkg.sh
@@ -92,9 +92,9 @@ test -z "${SKIP_EXTRACT}" && {
# Script 1 tasks
# some direct patching to use the bundled cbindgen until cbindgen >= 0.19.0 is in the debian sid repos
-cd "${debian_dir}"
-patch -Np1 -i "${CI_PROJECT_DIR}"/cbindgen.patch
-cd "${work_dir}"
+#cd "${debian_dir}"
+#patch -Np1 -i "${CI_PROJECT_DIR}"/cbindgen.patch
+#cd "${work_dir}"
# update debian/control file
# update fields and add libjack-dev
bgstack15