OSDN Git Service

Ubuntu 14.04 で動作するように修正
authorsuikan <suikan@users.sourceforge.jp>
Sat, 22 Nov 2014 05:32:37 +0000 (14:32 +0900)
committersuikan <suikan@users.sourceforge.jp>
Sat, 22 Nov 2014 05:32:37 +0000 (14:32 +0900)
.gitignore [new file with mode: 0644]
trx305/kernel/cfg/.gitignore [deleted file]
trx305/kernel/configure
trx305/kernel/utils/makedep

diff --git a/.gitignore b/.gitignore
new file mode 100644 (file)
index 0000000..ee009a7
--- /dev/null
@@ -0,0 +1 @@
+/trx305
diff --git a/trx305/kernel/cfg/.gitignore b/trx305/kernel/cfg/.gitignore
deleted file mode 100644 (file)
index 859f8de..0000000
+++ /dev/null
@@ -1,2 +0,0 @@
-/chk
-/cfg
index 4507d6b..bf72d97 100755 (executable)
@@ -37,7 +37,7 @@
 #  @(#) $Id: configure,v 1.2 2012/06/17 00:24:19 suikan Exp $
 # 
 
-require "getopt.pl";
+use Getopt::Std;
 
 #  オプションの定義
 #
@@ -68,7 +68,7 @@ require "getopt.pl";
 #
 #  オプションの処理
 #
-Getopt("CSTAULDPpld");
+getopt("CSTAULDPpld");
 unless ($opt_C) {
     print STDERR "configure: -C option is mandatory\n";
     exit(1);
index 041b38b..2c1bc20 100755 (executable)
@@ -39,7 +39,7 @@
 #  @(#) $Id: makedep,v 1.3 2012/06/17 00:24:19 suikan Exp $
 # 
 
-require "getopt.pl";
+use Getopt::Std;
 
 #  オプションの定義
 #
@@ -56,7 +56,7 @@ require "getopt.pl";
 #
 #  オプションの処理
 #
-Getopt("COTD");
+getopt("COTD");
 
 $cc_path = $opt_C;
 $cc_opts = $opt_O;