zipdep.pl (810a4bfd) | zipdep.pl (b9fd132d) |
---|---|
1: 2eval 'exec perl -wS $0 ${1+"$@"}' 3 if 0; 4#************************************************************** 5# 6# Licensed to the Apache Software Foundation (ASF) under one 7# or more contributor license agreements. See the NOTICE file 8# distributed with this work for additional information --- 19 unchanged lines hidden (view full) --- 28# mapgen - generate a dependencies file for zip commando 29# 30use Cwd; 31 32#### script id ##### 33 34( $script_name = $0 ) =~ s/^.*\b(\w+)\.pl$/$1/; 35 | 1: 2eval 'exec perl -wS $0 ${1+"$@"}' 3 if 0; 4#************************************************************** 5# 6# Licensed to the Apache Software Foundation (ASF) under one 7# or more contributor license agreements. See the NOTICE file 8# distributed with this work for additional information --- 19 unchanged lines hidden (view full) --- 28# mapgen - generate a dependencies file for zip commando 29# 30use Cwd; 31 32#### script id ##### 33 34( $script_name = $0 ) =~ s/^.*\b(\w+)\.pl$/$1/; 35 |
36$id_str = ' $Revision: 1.12 $ '; | 36$id_str = ' $Revision$ '; |
37$id_str =~ /Revision:\s+(\S+)\s+\$/ 38 ? ($script_rev = $1) : ($script_rev = "-"); 39 40print STDERR "$script_name -- version: $script_rev\n"; 41print STDERR "Multi Platform Enabled Edition\n"; 42 43######################### 44# # --- 299 unchanged lines hidden --- | 37$id_str =~ /Revision:\s+(\S+)\s+\$/ 38 ? ($script_rev = $1) : ($script_rev = "-"); 39 40print STDERR "$script_name -- version: $script_rev\n"; 41print STDERR "Multi Platform Enabled Edition\n"; 42 43######################### 44# # --- 299 unchanged lines hidden --- |