[git commit] scripts: remove CVS header from getent

Bernhard Reutner-Fischer rep.dot.nop at gmail.com
Wed Feb 20 14:20:56 UTC 2013


commit: http://git.uclibc.org/uClibc/commit/?id=62d3f7ba59ea89036962e08feacaa920f687cbbc
branch: http://git.uclibc.org/uClibc/commit/?id=refs/heads/master

Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop at gmail.com>
---
 extra/scripts/getent |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/extra/scripts/getent b/extra/scripts/getent
index 30d515b..5c482a0 100755
--- a/extra/scripts/getent
+++ b/extra/scripts/getent
@@ -1,5 +1,4 @@
 #!/bin/sh
-# $Header: /var/cvs/uClibc/extra/scripts/getent,v 1.2 2005/02/02 14:18:01 solar Exp $
 #
 # Closely (not perfectly) emulate the behavior of glibc's getent utility
 #
@@ -9,7 +8,8 @@
 # case-insensitive matches not supported (ethers; others?)
 # may return false-positives (hosts,protocols,rpc,services,ethers)
 
-export PATH="${PATH}:/bin:/usr/bin"
+[ -z "$PATH" ] && PATH="/bin:/usr/bin" || PATH="${PATH}:/bin:/usr/bin"
+export PATH
 
 file="/etc/$1"
 case $1 in


More information about the uClibc-cvs mailing list