Skip to content

Commit

Permalink
Fix displaying information about virtual environment
Browse files Browse the repository at this point in the history
This was non-sense.
  • Loading branch information
mika committed Jan 9, 2013
1 parent 8b8b09d commit f816094
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions autoconfig.functions
Expand Up @@ -500,10 +500,10 @@ config_time(){

# {{{ print kernel info
config_kernel(){
if $VIRTUAL ; then
einfo "Running Linux Kernel $KERNEL $VMWARE" ; eend 0
else
if $VIRTUAL && [ -n "$VIRTUAL_ENV" ] ; then
einfo "Running Linux Kernel $KERNEL inside $VIRTUAL_ENV" ; eend 0
else
einfo "Running Linux Kernel $KERNEL" ; eend 0
fi

if [ -r /proc/cpuinfo ] ; then
Expand Down

0 comments on commit f816094

Please sign in to comment.