diff options
author | Adrian Schmutzler <freifunk@adrianschmutzler.de> | 2021-01-25 12:48:42 +0100 |
---|---|---|
committer | Adrian Schmutzler <freifunk@adrianschmutzler.de> | 2021-01-29 14:29:41 +0100 |
commit | 331892f85f1cfab21b26a1f84824f4110e06027f (patch) | |
tree | 675577fa4f606e0afdaa04371cbcdfacb7595ab6 /package/system/uci | |
parent | 2c35899d8196c3c4f02c9b788b99a8a3bbbb32d1 (diff) | |
download | upstream-331892f85f1cfab21b26a1f84824f4110e06027f.tar.gz upstream-331892f85f1cfab21b26a1f84824f4110e06027f.tar.bz2 upstream-331892f85f1cfab21b26a1f84824f4110e06027f.zip |
treewide: drop shebang from non-executable lib files
This drops the shebang from another bunch of files in various /lib
folders, as these are sourced and the shebang is useless.
Fix execute bit in one case, too.
This should cover almost all trivial cases now, i.e. where /lib is
actually used for library files.
Signed-off-by: Adrian Schmutzler <freifunk@adrianschmutzler.de>
Diffstat (limited to 'package/system/uci')
-rw-r--r-- | package/system/uci/Makefile | 2 | ||||
-rw-r--r-- | package/system/uci/files/lib/config/uci.sh | 1 |
2 files changed, 1 insertions, 2 deletions
diff --git a/package/system/uci/Makefile b/package/system/uci/Makefile index 4f77cf2219..fca800a541 100644 --- a/package/system/uci/Makefile +++ b/package/system/uci/Makefile @@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=uci -PKG_RELEASE:=3 +PKG_RELEASE:=4 PKG_SOURCE_URL=$(PROJECT_GIT)/project/uci.git PKG_SOURCE_PROTO:=git diff --git a/package/system/uci/files/lib/config/uci.sh b/package/system/uci/files/lib/config/uci.sh index 1e85ced834..8d32cd1743 100644 --- a/package/system/uci/files/lib/config/uci.sh +++ b/package/system/uci/files/lib/config/uci.sh @@ -1,4 +1,3 @@ -#!/bin/sh # Shell script compatibility wrappers for /sbin/uci # # Copyright (C) 2008-2010 OpenWrt.org |