diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2015-04-12 20:34:31 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2015-04-12 20:34:31 +0000 |
commit | b0b95e0dd75012e974f2d1d2ee85f8d1594f79d2 (patch) | |
tree | 07c3e2d62f5b827018bf53a99680d66e996e64e2 /package | |
parent | 77c75e6fa3a6b12ffdb5e14f6b8357c0d0e99aa7 (diff) | |
download | upstream-b0b95e0dd75012e974f2d1d2ee85f8d1594f79d2.tar.gz upstream-b0b95e0dd75012e974f2d1d2ee85f8d1594f79d2.tar.bz2 upstream-b0b95e0dd75012e974f2d1d2ee85f8d1594f79d2.zip |
fstools: reject relative mount points
To prevent future confusion around '/overlay' vs. 'overlay' simply reject
relative path specifications as mount points since such paths result in
undefined behaviour anyway.
Signed-off-by: Jo-Philipp Wich <jow@openwrt.org>
SVN-Revision: 45404
Diffstat (limited to 'package')
-rw-r--r-- | package/system/fstools/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/package/system/fstools/Makefile b/package/system/fstools/Makefile index 622336595b..64f8cfbbb0 100644 --- a/package/system/fstools/Makefile +++ b/package/system/fstools/Makefile @@ -8,14 +8,14 @@ include $(TOPDIR)/rules.mk PKG_NAME:=fstools -PKG_VERSION:=2015-04-10 +PKG_VERSION:=2015-04-12 PKG_RELEASE=$(PKG_SOURCE_VERSION) PKG_SOURCE_PROTO:=git PKG_SOURCE_URL:=git://nbd.name/fstools.git PKG_SOURCE_SUBDIR:=$(PKG_NAME)-$(PKG_VERSION) -PKG_SOURCE_VERSION:=cc526b9dd7471270dae586433ec610760df54cc0 +PKG_SOURCE_VERSION:=cf8056385c287b98c70376034f0bfc59cc9261ed PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION)-$(PKG_SOURCE_VERSION).tar.gz CMAKE_INSTALL:=1 PKG_CHECK_FORMAT_SECURITY:=0 |