Gcc pointer script.

This commit is contained in:
Ben Gras 2005-08-30 17:55:10 +00:00
parent 05c80badf6
commit 37e3708259
2 changed files with 6 additions and 0 deletions

View file

@ -22,6 +22,7 @@ usr: \
/usr/bin/echo \ /usr/bin/echo \
/usr/bin/expr \ /usr/bin/expr \
/usr/bin/false \ /usr/bin/false \
/usr/bin/gcc \
/usr/bin/getopts \ /usr/bin/getopts \
/usr/bin/read \ /usr/bin/read \
/usr/bin/test \ /usr/bin/test \
@ -85,6 +86,9 @@ clean:
/usr/bin/cd: cd.sh /usr/bin/cd: cd.sh
install -m 755 -c -o bin $? $@ 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/[ /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/getopts /usr/bin/read /usr/bin/test /usr/bin/true /usr/bin/umask \
/usr/bin/wait: /usr/bin/cd /usr/bin/wait: /usr/bin/cd

2
commands/scripts/gcc.sh Normal file
View file

@ -0,0 +1,2 @@
#!/bin/sh
echo "GCC and the GNU utils are in /usr/gnu. Please adjust your \$PATH accordingly."