Skip to content
Snippets Groups Projects
Commit 6c95b349 authored by Dylan Aïssi's avatar Dylan Aïssi Committed by Vignesh Raman
Browse files

Fix install permissions

parent aa6d3dcf
Branches
Tags
1 merge request!46Add debian/apertis/lintian
......@@ -14,5 +14,5 @@ install:
$(INSTALL) -d $(AAC_CONFDIR)
for t in $(AAC_CONF); \
do \
$(INSTALL) $$t $(AAC_CONFDIR); \
$(INSTALL) $$t -m 644 $(AAC_CONFDIR); \
done
......@@ -15,5 +15,5 @@ install:
$(INSTALL) -d $(CMAKE_TOOLDIR)
for f in $(CMAKE); \
do \
$(INSTALL) $$f $(CMAKE_TOOLDIR); \
$(INSTALL) $$f -m 644 $(CMAKE_TOOLDIR); \
done
......@@ -14,5 +14,5 @@ install:
$(INSTALL) -d $(ROOT_CONFDIR)
for t in $(FILES); \
do \
$(INSTALL) $$t $(ROOT_CONFDIR); \
$(INSTALL) $$t -m 644 $(ROOT_CONFDIR); \
done
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment