summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuke Shumaker <shumakl@purdue.edu>2015-02-09 22:17:22 -0500
committerLuke Shumaker <shumakl@purdue.edu>2015-02-09 22:17:22 -0500
commitc8f419eab92045a069c8f444c77c8ff81aa36fa2 (patch)
tree8fe35c99977df2ec28a99fdb8c8479a29ef6961c
parentfee80e06d8cb661ee70cd4d676b5455c163b650e (diff)
sun4u compatibility wrappers: use exec
-rwxr-xr-x.local.sun4u/bin/grep2
-rwxr-xr-x.local.sun4u/bin/make2
-rwxr-xr-x.local.sun4u/bin/sed2
3 files changed, 3 insertions, 3 deletions
diff --git a/.local.sun4u/bin/grep b/.local.sun4u/bin/grep
index 481a7a9..b567a93 100755
--- a/.local.sun4u/bin/grep
+++ b/.local.sun4u/bin/grep
@@ -1,2 +1,2 @@
#/bin/bash
-ggrep "$@"
+exec ggrep "$@"
diff --git a/.local.sun4u/bin/make b/.local.sun4u/bin/make
index fff3f2d..5ba4aa8 100755
--- a/.local.sun4u/bin/make
+++ b/.local.sun4u/bin/make
@@ -1,2 +1,2 @@
#/bin/bash
-gmake "$@"
+exec gmake "$@"
diff --git a/.local.sun4u/bin/sed b/.local.sun4u/bin/sed
index 3707eb6..a4104da 100755
--- a/.local.sun4u/bin/sed
+++ b/.local.sun4u/bin/sed
@@ -1,2 +1,2 @@
#/bin/bash
-gsed "$@"
+exec gsed "$@"