diff options
author | Salvador Fandiño <sfandino@yahoo.com> | 2017-05-31 11:44:59 +0200 |
---|---|---|
committer | Salvador Fandiño <sfandino@yahoo.com> | 2017-06-05 09:33:55 +0200 |
commit | 320352d64885fa195ea070428344a7ae2404e535 (patch) | |
tree | acd59cf9a20e77e1fae5dc73ed0c30ff3926c2eb /nxcompshad | |
parent | f61956c1698560be5c492a4e5920b312e300d25a (diff) | |
download | nx-libs-320352d64885fa195ea070428344a7ae2404e535.tar.gz nx-libs-320352d64885fa195ea070428344a7ae2404e535.tar.bz2 nx-libs-320352d64885fa195ea070428344a7ae2404e535.zip |
Don't force root ownership of dirs when installing
When installing nxcompshad, directory user and group ownership were
forced to be root. That precluded installations by non-root users.
Now, they are not forced.
Diffstat (limited to 'nxcompshad')
-rw-r--r-- | nxcompshad/Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nxcompshad/Makefile.in b/nxcompshad/Makefile.in index e14d58312..34b785d25 100644 --- a/nxcompshad/Makefile.in +++ b/nxcompshad/Makefile.in @@ -91,7 +91,7 @@ includedir = @includedir@ pkgconfigdir = @pkgconfigdir@ INSTALL = @INSTALL@ -INSTALL_DIR = $(INSTALL) -d -o root -g root -m 0755 +INSTALL_DIR = $(INSTALL) -d -m 0755 INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_LINK = cp -av |