summaryrefslogtreecommitdiffstats
path: root/debian/patches/0001-update_feeds-Fix-usign-errors-on-empty-indices.patch
diff options
context:
space:
mode:
Diffstat (limited to 'debian/patches/0001-update_feeds-Fix-usign-errors-on-empty-indices.patch')
-rw-r--r--debian/patches/0001-update_feeds-Fix-usign-errors-on-empty-indices.patch29
1 files changed, 29 insertions, 0 deletions
diff --git a/debian/patches/0001-update_feeds-Fix-usign-errors-on-empty-indices.patch b/debian/patches/0001-update_feeds-Fix-usign-errors-on-empty-indices.patch
new file mode 100644
index 0000000..41a6a41
--- /dev/null
+++ b/debian/patches/0001-update_feeds-Fix-usign-errors-on-empty-indices.patch
@@ -0,0 +1,29 @@
+From 5285baf194c84bac30d49cc8e8d42e70a3a1a43f Mon Sep 17 00:00:00 2001
+From: Patrick McDermott <patrick.mcdermott@libiquity.com>
+Date: Mon, 29 Jun 2020 01:30:37 -0400
+Subject: [PATCH] update_feeds(): Fix usign errors on empty indices
+
+Fixes:
+
+ Cannot open message file: Invalid argument
+---
+ src/index.sh | 3 ++-
+ 1 file changed, 2 insertions(+), 1 deletion(-)
+
+diff --git a/src/index.sh b/src/index.sh
+index 275934e..6e77a9d 100644
+--- a/src/index.sh
++++ b/src/index.sh
+@@ -201,7 +201,8 @@ update_feeds()
+ mv -- "${sect}/Packages~" \
+ "${sect}/Packages"
+ else
+- 1>"${sect}/Packages"
++ # Must be non-empty for usign to work.
++ printf '\n' 1>"${sect}/Packages"
+ fi
+ if ${conf_gzip}; then
+ "${GZIP}" -9c -- "${sect}/Packages" \
+--
+2.11.0
+