瀏覽代碼

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

pull/255/head
Barnaba Mateusz Piwek 5 月之前
父節點
當前提交
1dd251e400
共有 3 個文件被更改,包括 6 次插入2 次删除
  1. +4
    -0
      .gitignore
  2. +1
    -1
      gpio/Makefile
  3. +1
    -1
      wiringPiD/Makefile

+ 4
- 0
.gitignore 查看文件

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

# KDevelop project files
*.kdev4
.kdev4/

+ 1
- 1
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


+ 1
- 1
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


Loading…
取消
儲存