imgtools/buildrom/tools/romosvariant.pm
author Bob Rosenberg <bob.rosenberg@nokia.com>
Mon, 18 Oct 2010 10:33:54 +0100
changeset 660 66ff3e731c60
parent 600 6d08f4a05d93
permissions -rw-r--r--
Sysdeftools additional support for merging misordered system definitions. More extensive validation. Minor bug fixes. Bash wrappers for perl scripts for unix installs.

# Copyright (c) 2006-2009 Nokia Corporation and/or its subsidiary(-ies).
# All rights reserved.
# This component and the accompanying materials are made available
# under the terms of the License "Eclipse Public License v1.0"
# which accompanies this distribution, and is available
# at the URL "http://www.eclipse.org/legal/epl-v10.html".
#
# Initial Contributors:
# Nokia Corporation - initial contribution.
#
# Contributors:
#
# Description:
# Collection of utilitiy functions which is copied from Symbian OS perl modules. 
# It provides platform related information to ROM Tools including buildrom, 
# features.pl, etc.
# 

package romosvariant;

require Exporter;
@ISA=qw(Exporter);
@EXPORT=qw(
	os_name
	is_windows
	is_linux
	env_delimiter
	path_delimiter
);

use strict;

sub os_name
{
	return $^O;
}

sub is_windows
{
	if ($^O =~ /^MSWin32$/i){
		return 1;
	}else{
		return 0;
	}	
}

sub is_linux
{
	if ($^O =~ /^MSWin32$/i){
		return 0;
	}else{
		return 1;
	}	
}

sub env_delimiter
{
	if ($^O =~ /^MSWin32$/i){
		return ";";
	}else{
		return ":";
	}
}

sub path_delimiter
{
	if ($^O =~ /^MSWin32$/i){
		return "\\";
	}else{
		return "\/";
	}
}

1;