summaryrefslogtreecommitdiff
path: root/xmgrace
diff options
context:
space:
mode:
Diffstat (limited to 'xmgrace')
-rw-r--r--xmgrace16
1 files changed, 0 insertions, 16 deletions
diff --git a/xmgrace b/xmgrace
deleted file mode 100644
index 860772d..0000000
--- a/xmgrace
+++ /dev/null
@@ -1,16 +0,0 @@
-#!/usr/bin/perl
-
-use File::Basename;
-
-$grhome =$ENV{GRACE_HOME};
-$grhome ="/usr/X11R6/lib/X11/grace" if "$grhome" eq "";
-$dynamic = "$grhome" . "/bin/xmgrace.dynamic";
-$semistatic = "$grhome" . "/bin/xmgrace.semistatic";
-$basename = basename($0);
-if (-x "$dynamic") {
- exec $dynamic $basename, @ARGV;
-} elsif (-x "$semistatic") {
- exec $semistatic $basename, @ARGV;
-} else {
- die "ERROR: Can't find any grace executable in $grhome/bin\n";
-}