From e6f8e4413e2cf2f388e0457f8e645dd4c51fd7d8 Mon Sep 17 00:00:00 2001 From: Bastian Dehn Date: Sat, 26 Sep 2026 18:03:14 +0200 Subject: [PATCH] add set perms for file --- Makefile | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/Makefile b/Makefile index 2020de1..44794f8 100644 --- a/Makefile +++ b/Makefile @@ -34,39 +34,47 @@ clean: $(BUILDDIR)/$(PACKAGE)/$(BINDIR)/albentohandy: mkdir --parents $(@D) sed 's/# LIB_PATH/LIB_PATH/' $(SRCDIR)/albentohandy > $(@) + chmod 755 $(@) shellcheck $(@) $(BUILDDIR)/$(PACKAGE)/$(LIBDIR)/vorbis.sh: mkdir --parents $(@D) cp $(SRCDIR)/lib/vorbis.sh $(@) + chmod 755 $(@) shellcheck $(@) $(BUILDDIR)/$(PACKAGE)/$(LIBDIR)/mp3.sh: mkdir --parents $(@D) cp $(SRCDIR)/lib/mp3.sh $(@) + chmod 755 $(@) shellcheck $(@) $(BUILDDIR)/$(PACKAGE)/$(LIBDIR)/opus.sh: mkdir --parents $(@D) cp $(SRCDIR)/lib/opus.sh $(@) + chmod 755 $(@) shellcheck $(@) $(BUILDDIR)/$(PACKAGE)/$(LIBDIR)/flac.sh: mkdir --parents $(@D) cp $(SRCDIR)/lib/flac.sh $(@) + chmod 755 $(@) shellcheck $(@) $(BUILDDIR)/$(PACKAGE)/$(SHAREDIR)/albentohandy.conf: mkdir --parents $(@D) cp $(SRCDIR)/albentohandy.conf $(@) + chmod 644 $(@) $(BUILDDIR)/$(PACKAGE)/$(SHAREDIR)/copyright: mkdir --parents $(@D) cp $(SRCDIR)/debian/copyright $(@) + chmod 644 $(@) $(BUILDDIR)/$(PACKAGE)/$(SHAREDIR)/changelog.gz: mkdir --parents $(@D) gzip --stdout --no-name --best $(SRCDIR)/debian/changelog > $(@) + chmod 644 $(@) $(BUILDDIR)/$(PACKAGE)/DEBIAN/control: mkdir --parents $(@D) -- 2.47.3