From 37e3708259f9910986afaf2599f8566a78109501 Mon Sep 17 00:00:00 2001 From: Ben Gras Date: Tue, 30 Aug 2005 17:55:10 +0000 Subject: [PATCH] Gcc pointer script. --- commands/scripts/Makefile | 4 ++++ commands/scripts/gcc.sh | 2 ++ 2 files changed, 6 insertions(+) create mode 100644 commands/scripts/gcc.sh diff --git a/commands/scripts/Makefile b/commands/scripts/Makefile index 5cdcef8b6..222c2c3d8 100755 --- a/commands/scripts/Makefile +++ b/commands/scripts/Makefile @@ -22,6 +22,7 @@ usr: \ /usr/bin/echo \ /usr/bin/expr \ /usr/bin/false \ + /usr/bin/gcc \ /usr/bin/getopts \ /usr/bin/read \ /usr/bin/test \ @@ -85,6 +86,9 @@ clean: /usr/bin/cd: cd.sh install -m 755 -c -o bin $? $@ +/usr/bin/gcc: gcc.sh + install -m 755 -c -o bin $? $@ + /usr/bin/[ /usr/bin/command /usr/bin/echo /usr/bin/expr /usr/bin/false \ /usr/bin/getopts /usr/bin/read /usr/bin/test /usr/bin/true /usr/bin/umask \ /usr/bin/wait: /usr/bin/cd diff --git a/commands/scripts/gcc.sh b/commands/scripts/gcc.sh new file mode 100644 index 000000000..66d0828c7 --- /dev/null +++ b/commands/scripts/gcc.sh @@ -0,0 +1,2 @@ +#!/bin/sh +echo "GCC and the GNU utils are in /usr/gnu. Please adjust your \$PATH accordingly." -- 2.44.0