From 1dd251e4001567d25685c057676be2cf90699324 Mon Sep 17 00:00:00 2001 From: Barnaba Mateusz Piwek Date: Thu, 6 Jun 2024 16:08:38 +0200 Subject: [PATCH] 'chown root.root' fixed to 'chown root:root'; KDevelop files added to .gitignore --- .gitignore | 4 ++++ gpio/Makefile | 2 +- wiringPiD/Makefile | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index ed2ec80..4ff555e 100644 --- a/.gitignore +++ b/.gitignore @@ -5,3 +5,7 @@ lib*.so.* debian-template/wiringPi debian-template/wiringpi-*.deb gpio/gpio + +# KDevelop project files +*.kdev4 +.kdev4/ diff --git a/gpio/Makefile b/gpio/Makefile index 249bb24..d632931 100644 --- a/gpio/Makefile +++ b/gpio/Makefile @@ -75,7 +75,7 @@ install: gpio $Q mkdir -p $(DESTDIR)$(PREFIX)/bin $Q cp gpio $(DESTDIR)$(PREFIX)/bin ifneq ($(WIRINGPI_SUID),0) - $Q chown root.root $(DESTDIR)$(PREFIX)/bin/gpio + $Q chown root:root $(DESTDIR)$(PREFIX)/bin/gpio $Q chmod 4755 $(DESTDIR)$(PREFIX)/bin/gpio endif $Q mkdir -p $(DESTDIR)$(PREFIX)/share/man/man1 diff --git a/wiringPiD/Makefile b/wiringPiD/Makefile index d7ebec8..0f3744d 100644 --- a/wiringPiD/Makefile +++ b/wiringPiD/Makefile @@ -70,7 +70,7 @@ install: wiringpid $Q echo "[Install]" $Q mkdir -p $(DESTDIR)$(PREFIX)/sbin $Q cp wiringpid $(DESTDIR)$(PREFIX)/sbin - $Q chown root.root $(DESTDIR)$(PREFIX)/sbin/wiringpid + $Q chown root:root $(DESTDIR)$(PREFIX)/sbin/wiringpid # $Q mkdir -p $(DESTDIR)$(PREFIX)/man/man8 # $Q cp gpio.1 $(DESTDIR)$(PREFIX)/man/man8