From 6347990ae1337208c499d948e70b5c2dbefaa0d4 Mon Sep 17 00:00:00 2001 From: Denis 'GNUtoo' Carikli Date: Sun, 6 Aug 2023 20:31:28 +0200 Subject: [PATCH] directive files: Fix version Thanks to Adrien Bourmault for finding out why the uploads weren't working. Reported-by: Adrien Bourmault Signed-off-by: Denis 'GNUtoo' Carikli --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 7645bab..708abee 100644 --- a/Makefile +++ b/Makefile @@ -49,10 +49,10 @@ all: \ $(DESTDIR)/acpica-unix2-20211217.tar.gz \ $(DESTDIR)/acpica-unix2-20220331.tar.gz \ +# The versin is the version of the upload protocol %.directive: % @echo -n "" > $@ - @echo "version: $(basename \ - $(basename $(subst $(DESTDIR)/acpica-unix2-,,$^)))" >> $@ + @echo "version: 1.2" >> $@ @echo "filename: $(subst $(DESTDIR)/,,$^)" >> $@ @echo "directory: gnuboot/mirrors/acpica.org" >> $@