blob: ac6dc162e1c17ed77129529301f8c649179437a3 [file] [log] [blame]
rjw6c1fd8f2022-11-30 14:33:01 +08001#!/usr/bin/perl
2#
3# Copyright Statement:
4# --------------------
5# This software is protected by Copyright and the information contained
6# herein is confidential. The software may not be copied and the information
7# contained herein may not be used or disclosed except with the written
8# permission of MediaTek Inc. (C) 2005
9#
10# BY OPENING THIS FILE, BUYER HEREBY UNEQUIVOCALLY ACKNOWLEDGES AND AGREES
11# THAT THE SOFTWARE/FIRMWARE AND ITS DOCUMENTATIONS ("MEDIATEK SOFTWARE")
12# RECEIVED FROM MEDIATEK AND/OR ITS REPRESENTATIVES ARE PROVIDED TO BUYER ON
13# AN "AS-IS" BASIS ONLY. MEDIATEK EXPRESSLY DISCLAIMS ANY AND ALL WARRANTIES,
14# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE IMPLIED WARRANTIES OF
15# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE OR NONINFRINGEMENT.
16# NEITHER DOES MEDIATEK PROVIDE ANY WARRANTY WHATSOEVER WITH RESPECT TO THE
17# SOFTWARE OF ANY THIRD PARTY WHICH MAY BE USED BY, INCORPORATED IN, OR
18# SUPPLIED WITH THE MEDIATEK SOFTWARE, AND BUYER AGREES TO LOOK ONLY TO SUCH
19# THIRD PARTY FOR ANY WARRANTY CLAIM RELATING THERETO. MEDIATEK SHALL ALSO
20# NOT BE RESPONSIBLE FOR ANY MEDIATEK SOFTWARE RELEASES MADE TO BUYER'S
21# SPECIFICATION OR TO CONFORM TO A PARTICULAR STANDARD OR OPEN FORUM.
22#
23# BUYER'S SOLE AND EXCLUSIVE REMEDY AND MEDIATEK'S ENTIRE AND CUMULATIVE
24# LIABILITY WITH RESPECT TO THE MEDIATEK SOFTWARE RELEASED HEREUNDER WILL BE,
25# AT MEDIATEK'S OPTION, TO REVISE OR REPLACE THE MEDIATEK SOFTWARE AT ISSUE,
26# OR REFUND ANY SOFTWARE LICENSE FEES OR SERVICE CHARGE PAID BY BUYER TO
27# MEDIATEK FOR SUCH MEDIATEK SOFTWARE AT ISSUE.
28#
29# THE TRANSACTION CONTEMPLATED HEREUNDER SHALL BE CONSTRUED IN ACCORDANCE
30# WITH THE LAWS OF THE STATE OF CALIFORNIA, USA, EXCLUDING ITS CONFLICT OF
31# LAWS PRINCIPLES. ANY DISPUTES, CONTROVERSIES OR CLAIMS ARISING THEREOF AND
32# RELATED THERETO SHALL BE SETTLED BY ARBITRATION IN SAN FRANCISCO, CA, UNDER
33# THE RULES OF THE INTERNATIONAL CHAMBER OF COMMERCE (ICC).
34#
35#
36#*****************************************************************************
37#*
38#* Filename:
39#* ---------
40#* lnitem.pl
41#*
42#* Project:
43#* --------
44#* Maui_Software
45#*
46#* Description:
47#* ------------
48#* This script will break all words in to lines
49#*
50#* Author:
51#* -------
52#* Sherman Wang (mtk00590)
53#*
54#*============================================================================
55#* HISTORY
56#* Below this line, this part is controlled by PVCS VM. DO NOT MODIFY!!
57#*------------------------------------------------------------------------------
58#* $Revision: 1.1 $
59#* $Modtime: Jun 20 2005 18:37:52 $
60#* $Log: //mtkvs01/vmdata/Maui_sw/archives/mcu/pcore/tools/lnitem.pl-arc $
61 #
62 # Rev 1.1 Jun 20 2005 18:39:26 BM
63 #Karlos:
64 #add copyright and disclaimer
65 #
66 # Rev 1.0 Sep 10 2004 18:37:34 BM
67 #Initial revision.
68#*------------------------------------------------------------------------------
69#* Upper this line, this part is controlled by PVCS VM. DO NOT MODIFY!!
70#*============================================================================
71#****************************************************************************/
72
73#****************************************************************************
74# Included Modules
75#****************************************************************************
76use strict;
77
78#****************************************************************************
79# Constants
80#****************************************************************************
81my $DebugPrint = 0; # 1 for debug; 0 for non-debug
82
83#****************************************************************************
84# parse dir result and extract information for file setting
85#****************************************************************************
86my $DEF_FLIE = $ARGV[0];
87
88open DEF_FLIE, "+<$DEF_FLIE" or die "cannot open $DEF_FLIE\n";
89
90my $backup= $/;
91undef $/;
92my $reading = <DEF_FLIE>;
93$/ = $backup;
94exit(0) unless ($reading =~ /\S+[ \t]+\S+/g);
95
96# replace all \s with \n
97seek(DEF_FLIE,0,0);
98my $output = '';
99while (<DEF_FLIE>)
100{
101 s/\s+/\n/g;
102 $output .= $_;
103}
104
105#copy original *.def to *.defx
106my $old_def = $DEF_FLIE . '.old';
107#print "$DEF_FLIE\n";
108#system "copy $DEF_FLIE $old_def";
109
110seek(DEF_FLIE,0,0);
111print DEF_FLIE $output;
112
113close DEF_FLIE;