File: fix_perl_headers

package info (click to toggle)
libchado-perl 1.31-6
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, forky, sid, trixie
  • size: 44,716 kB
  • sloc: sql: 282,721; xml: 192,553; perl: 25,524; sh: 102; python: 73; makefile: 57
file content (44 lines) | stat: -rw-r--r-- 925 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
Subject: fix interpreter path
Description: default perl interpreter path is wrong
Author: Olivier Sallou <olivier.sallou@irisa.fr>
Last-Updated: 02/11/2011
--- a/bin/gmod_bulk_load_pubmed.pl
+++ b/bin/gmod_bulk_load_pubmed.pl
@@ -1,4 +1,4 @@
-
+#!/usr/bin/perl
 =head1 NAME
 
 gmod_bulk_load_pubmed.pl
--- a/bin/load_ncbi_taxonomy.pl
+++ b/bin/load_ncbi_taxonomy.pl
@@ -1,4 +1,4 @@
-
+#!/usr/bin/perl
 =head1 NAME
 
  load_ncbi_taxonomy.pl
--- a/bin/load_taxonomy_cvterms.pl
+++ b/bin/load_taxonomy_cvterms.pl
@@ -1,4 +1,4 @@
-
+#!/usr/bin/perl
 =head1 NAME
 
  load_taxonomy_cvterms.pl
--- a/load/bin/bulk_load_gff3.PLS
+++ b/load/bin/bulk_load_gff3.PLS
@@ -1,4 +1,4 @@
-#!perl -w
+#!/usr/bin/perl -w
 
 use Config;
 use File::Basename qw(&basename &dirname);
--- a/load/bin/load_gff3.PLS
+++ b/load/bin/load_gff3.PLS
@@ -1,4 +1,4 @@
-#!perl -w
+#!/usr/bin/perl -w
 
 use Config;
 use File::Basename qw(&basename &dirname);