Subversion Repositories DevTools

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
6925 dpurdie 1
###############################################################################
2
# COPYRIGHT - VIX IP PTY LTD ("VIX"). ALL RIGHTS RESERVED.
3
# 
4
# File:         PLATFORM/MANSIG
5
#
6
# Contents:     Support for a specialised tool used to sign Manifests
7
#               It has no compiler support and is thus mostly GENERIC
8
#
9
###############################################################################
10
#
11
 
12
MANSIGInit();
13
 
14
###############################################################################
15
#
16
sub MANSIGInit
17
{
18
    my( @args ) = @ScmPlatformArgs;            # Platform arguments
19
    my( $product );
20
 
21
#.. Parse arguments
22
#
23
    Debug( "MANSIG(@args)\n" );
24
 
25
    foreach $_ ( @args ) {
26
        if (/^--product=(.*)/) {
27
            $product = $1;
28
        } else {
29
            Message( "MANSIG: unknown option $_ -- ignored\n" );
30
        }
31
    }
32
 
33
#... Toolset
34
#
35
    Toolset( '*', "GENERIC" );
36
    return 1;
37
}
38