OSDN Git Service

fixed issues reported by static analysis tool
[openpts/openpts.git] / bootstrap.sh
1 #
2 # bootstrap.sh
3 #
4 # This file is part of the OpenPTS project.
5 #
6 # The Initial Developer of the Original Code is International
7 # Business Machines Corporation. Portions created by IBM
8 # Corporation are Copyright (C) 2010 International Business
9 # Machines Corporation. All Rights Reserved.
10 #
11 # This program is free software; you can redistribute it and/or modify
12 # it under the terms of the Common Public License as published by
13 # IBM Corporation; either version 1 of the License, or (at your option)
14 # any later version.
15 #
16 # This program is distributed in the hope that it will be useful,
17 # but WITHOUT ANY WARRANTY; without even the implied warranty of
18 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19 # Common Public License for more details.
20 #
21 # You should have received a copy of the Common Public License
22 # along with this program; if not, a copy can be viewed at
23 # http://www.opensource.org/licenses/cpl1.0.php.
24 #
25
26
27
28 set -x
29
30
31 #
32 # gettextize support
33 #
34 mkdir -p po
35 mkdir -p m4
36 cp -R po_/* po/
37 touch po/Makefile.in.in
38 touch m4/Makefile.am
39 autoreconf -fv --install
40