]> gitweb.hhaalo.de Git - albentohandy.git/commitdiff
add set perms for file
authorBastian Dehn <hhaalo@arcor.de>
Sat, 26 Sep 2026 16:03:14 +0000 (18:03 +0200)
committerBastian Dehn <hhaalo@arcor.de>
Sat, 26 Sep 2026 16:03:14 +0000 (18:03 +0200)
Makefile

index 2020de14fd889fc04ea2dff6afc7bddd876e296a..44794f83d75975db36e537a8a70a017859274f9d 100644 (file)
--- 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)