diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2011-01-27 19:11:36 +0100 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2011-01-27 19:11:36 +0100 |
commit | c4e4b5faf4a5d344b4d53c114d5c4d83f84a10e0 (patch) | |
tree | e4fa84443f2e41b6ed9eb264cdb9eb4e4037f2b7 /package | |
parent | 5b3adbd2422a2ebd6db295628dc1e54ed466ed63 (diff) |
fix visudo, use
Diffstat (limited to 'package')
-rw-r--r-- | package/base-files/Makefile | 2 | ||||
-rw-r--r-- | package/base-files/src/etc/profile | 1 | ||||
-rw-r--r-- | package/sudo/Makefile | 5 |
3 files changed, 5 insertions, 3 deletions
diff --git a/package/base-files/Makefile b/package/base-files/Makefile index dee9fd9a4..3744ceb53 100644 --- a/package/base-files/Makefile +++ b/package/base-files/Makefile @@ -6,7 +6,7 @@ include $(TOPDIR)/mk/rootfs.mk PKG_NAME:= base-files PKG_VERSION:= 1.0 -PKG_RELEASE:= 43 +PKG_RELEASE:= 44 PKG_SECTION:= base PKG_DESCR:= basic files and scripts diff --git a/package/base-files/src/etc/profile b/package/base-files/src/etc/profile index ff808b707..c326f87c2 100644 --- a/package/base-files/src/etc/profile +++ b/package/base-files/src/etc/profile @@ -1,5 +1,6 @@ export PATH=/bin:/sbin:/usr/bin:/usr/sbin export TERM=linux +export EDITOR=/bin/vi if [[ $(id -u) = 0 ]]; then export PS1='`whoami`@`hostname`:`pwd` # ' else diff --git a/package/sudo/Makefile b/package/sudo/Makefile index 4e031c871..2dc7ecdb9 100644 --- a/package/sudo/Makefile +++ b/package/sudo/Makefile @@ -5,10 +5,10 @@ include $(TOPDIR)/rules.mk PKG_NAME:= sudo PKG_VERSION:= 1.7.4p4 -PKG_RELEASE:= 1 +PKG_RELEASE:= 2 PKG_MD5SUM:= 55d9906535d70a1de347cd3d3550ee87 PKG_DESCR:= su do -PKG_SECTION:= misc +PKG_SECTION:= admin PKG_URL:= http://www.courtesan.com/sudo/ PKG_SITES:= http://www.courtesan.com/sudo/dist/ @@ -17,6 +17,7 @@ include $(TOPDIR)/mk/package.mk $(eval $(call PKG_template,SUDO,$(PKG_NAME),$(PKG_VERSION)-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION})) CONFIGURE_ARGS+= --without-pam \ + --with-env-editor \ --with-timedir=/var/run post-install: |