diff options
author | Hannu Nyman <hannu.nyman@iki.fi> | 2016-06-22 20:33:12 +0300 |
---|---|---|
committer | Hannu Nyman <hannu.nyman@iki.fi> | 2016-06-22 20:33:12 +0300 |
commit | ac341e7726f5e2da672f3a237d47488a4abe9113 (patch) | |
tree | 30c13b58e6a5773dd9d7471988942ba54027e43d /utils/ccrypt | |
parent | 297e8dfc4d64f634913b56a9f232140465ab5e61 (diff) |
ccrypt: disable support for emacs mode
Disable the special emacs mode, as it can lead to build failures
in buildbot.
Signed-off-by: Hannu Nyman <hannu.nyman@iki.fi>
Diffstat (limited to 'utils/ccrypt')
-rw-r--r-- | utils/ccrypt/Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/utils/ccrypt/Makefile b/utils/ccrypt/Makefile index 2419ab749..0e8973b85 100644 --- a/utils/ccrypt/Makefile +++ b/utils/ccrypt/Makefile @@ -1,5 +1,5 @@ # -# Copyright (C) 2009-2014 OpenWrt.org +# Copyright (C) 2009-2016 OpenWrt.org # # This is free software, licensed under the GNU General Public License v2. # See /LICENSE for more information. @@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=ccrypt PKG_VERSION:=1.10 -PKG_RELEASE:=2 +PKG_RELEASE:=3 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz PKG_SOURCE_URL:=@SF/ccrypt @@ -28,6 +28,8 @@ define Package/ccrypt URL:=http://ccrypt.sourceforge.net/ endef +CONFIGURE_ARGS += --disable-emacs + define Package/ccrypt/install $(INSTALL_DIR) $(1)/usr/bin $(INSTALL_BIN) $(PKG_BUILD_DIR)/src/ccrypt $(1)/usr/bin/ |