Subversion Repositories DevTools

Rev

Rev 5709 | Blame | Compare with Previous | Last modification | View Log | RSS feed

#! perl
########################################################################
# COPYRIGHT - VIX IP PTY LTD ("VIX"). ALL RIGHTS RESERVED.
#
# Module name   : jats.sh
# Module type   : Makefile system
# Compiler(s)   : n/a
# Environment(s): jats
#
# Description   : This is a dummy deploylib.pm file
#                 Inpractice it should not be found as module SHOULD be provided
#                 by an external package.
#
#                 This module exists simply to provide a friendly user error
#                 message.
#
#                 ASSUMPTION:
#                 The PERL5LIB path is set so that the directory containing
#                 user modules is searched before the directory conatining this
#                 package.
#
#......................................................................#

require 5.006_001;
use strict;
use warnings;

package deploylib;

BEGIN
{
    print "---------------------------------------------------------------------\n";
    print "ERROR.\n";
    print "ERROR. The build.pl file used to create this deployment package\n";
    print "ERROR. needs to be updated to include a package that provides\n";
    print "ERROR. the core deployment functionality\n";
    print "ERROR.\n";
    print "ERROR. e.g.:   BuildPkgArchive ( 'deployfiles', '1.0.0.cr' );\n";
    print "ERROR.\n";
    print "---------------------------------------------------------------------\n";
    exit 1;
}

1;