File: yardconfig.pm.in

package info (click to toggle)
yard 1.17.patch1-5
  • links: PTS
  • area: main
  • in suites: potato
  • size: 600 kB
  • ctags: 74
  • sloc: perl: 1,729; sh: 250; makefile: 176; asm: 32
file content (34 lines) | stat: -rw-r--r-- 717 bytes parent folder | download
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
# -*- Mode: Perl -*-
# @configure_input@
# $Id$

package yardconfig;
require Exporter;
@ISA = qw(Exporter);
@EXPORT =  qw($scripts_dest $lib_dest $config_dest %_path);

$scripts_dest = "@scripts_dest@";
$lib_dest     = "@lib_dest@";
$config_dest  = "@config_dest@";
    
unshift(@::INC, $lib_dest);
    
%_path =( 'perl'	 => '@PERL@',
	  'ldd'		 => '@LDD@',
	  'ldconfig'	 => '@LDCONFIG@',
	  'chroot'	 => '@CHROOT@',
	  'sync'	 => '@SYNC@',
	  'mount'	 => '@MOUNT@',
	  'umount'	 => '@UMOUNT@',
	  'rm'		 => '@RM@',
	  'dd'		 => '@DD@',
	  'mke2fs'	 => '@MKE2FS@',
	  'rdev'	 => '@RDEV@',
	  'gzip'	 => '@GZIP@',
	  'uname'	 => '@UNAME@',
	  'objcopy'	 => '@OBJCOPY@'
	);

1;##### End of yardconfig.pm
__END__
$Log$