summaryrefslogtreecommitdiffstats
path: root/perl-install/g_auto_install
diff options
context:
space:
mode:
Diffstat (limited to 'perl-install/g_auto_install')
-rwxr-xr-xperl-install/g_auto_install13
1 files changed, 13 insertions, 0 deletions
diff --git a/perl-install/g_auto_install b/perl-install/g_auto_install
new file mode 100755
index 000000000..41a5d3303
--- /dev/null
+++ b/perl-install/g_auto_install
@@ -0,0 +1,13 @@
+#!../perl
+
+@ARGV == 0 or die "usage: $0\n";
+
+my $dir = `pwd`;
+chomp $dir;
+$dir .= "/../../..";
+
+$ENV{PERL5LIB} = join ":", map { "$dir/$_" } @INC;
+$ENV{LD_LIBRARY_PATH} = "$dir/usr/lib";
+$ENV{PATH} = join ":", map { "$dir/$_" } split ":", "/usr/bin:/bin:/sbin:/usr/sbin:/usr/X11R6/bin";
+
+exec "../perl", "./install2", "--g_auto_install" or die;