Browse Source

'chown root.root' fixed to 'chown root:root'; KDevelop files added to .gitignore

pull/255/head
Barnaba Mateusz Piwek 5 months ago
parent
commit
1dd251e400
3 changed files with 6 additions and 2 deletions
  1. +4
    -0
      .gitignore
  2. +1
    -1
      gpio/Makefile
  3. +1
    -1
      wiringPiD/Makefile

+ 4
- 0
.gitignore View File

@@ -5,3 +5,7 @@ lib*.so.*
debian-template/wiringPi debian-template/wiringPi
debian-template/wiringpi-*.deb debian-template/wiringpi-*.deb
gpio/gpio gpio/gpio

# KDevelop project files
*.kdev4
.kdev4/

+ 1
- 1
gpio/Makefile View File

@@ -75,7 +75,7 @@ install: gpio
$Q mkdir -p $(DESTDIR)$(PREFIX)/bin $Q mkdir -p $(DESTDIR)$(PREFIX)/bin
$Q cp gpio $(DESTDIR)$(PREFIX)/bin $Q cp gpio $(DESTDIR)$(PREFIX)/bin
ifneq ($(WIRINGPI_SUID),0) 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 $Q chmod 4755 $(DESTDIR)$(PREFIX)/bin/gpio
endif endif
$Q mkdir -p $(DESTDIR)$(PREFIX)/share/man/man1 $Q mkdir -p $(DESTDIR)$(PREFIX)/share/man/man1


+ 1
- 1
wiringPiD/Makefile View File

@@ -70,7 +70,7 @@ install: wiringpid
$Q echo "[Install]" $Q echo "[Install]"
$Q mkdir -p $(DESTDIR)$(PREFIX)/sbin $Q mkdir -p $(DESTDIR)$(PREFIX)/sbin
$Q cp wiringpid $(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 mkdir -p $(DESTDIR)$(PREFIX)/man/man8
# $Q cp gpio.1 $(DESTDIR)$(PREFIX)/man/man8 # $Q cp gpio.1 $(DESTDIR)$(PREFIX)/man/man8


Loading…
Cancel
Save