mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-09-26 12:00:48 -09:00
package/screen: install screenrc without executable rights
There is no reason to install a configuration file in /etc with
executable rights.
Fixes: https://gitlab.com/buildroot.org/buildroot/-/work_items/174
Fixes: 98873717c2 ("screen: enable terminfo and install screenrc")
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
Signed-off-by: Julien Olivain <ju.o@free.fr>
This commit is contained in:
committed by
Julien Olivain
parent
fbb9739dd8
commit
318d4ce4e5
@@ -28,7 +28,7 @@ SCREEN_CONF_OPTS += --disable-pam
|
||||
endif
|
||||
|
||||
define SCREEN_INSTALL_SCREENRC
|
||||
$(INSTALL) -m 0755 -D $(@D)/etc/screenrc $(TARGET_DIR)/etc/screenrc
|
||||
$(INSTALL) -m 0644 -D $(@D)/etc/screenrc $(TARGET_DIR)/etc/screenrc
|
||||
endef
|
||||
SCREEN_POST_INSTALL_TARGET_HOOKS += SCREEN_INSTALL_SCREENRC
|
||||
|
||||
|
||||
Reference in New Issue
Block a user