summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorP. J. McDermott <pjm@nac.net>2013-05-18 13:39:05 (EDT)
committer P. J. McDermott <pjm@nac.net>2013-05-18 13:39:05 (EDT)
commit69e1ed308b3707ecae387ab3cc8c4df1e968b76f (patch)
treed0016c09af32419135717398cea4ea5ccf073ed9
parent0b69a4a8f93a977c5cfab2d9ff71913c7afb0212 (diff)
Delete c89 and c99 scripts.
These should be generated by postinst for native compilers (if host arch == target arch).
-rwxr-xr-xbuild2
-rw-r--r--src/c89/c89.sh2
-rw-r--r--src/c99/c99.sh2
3 files changed, 0 insertions, 6 deletions
diff --git a/build b/build
index c75e369..cf7896f 100755
--- a/build
+++ b/build
@@ -4,8 +4,6 @@ build:
install:
mkdir -p dest/usr/bin
- cp src/c89/c89.sh dest/usr/bin/c89
- cp src/c99/c99.sh dest/usr/bin/c99
set -e; for target in $$(cat ../targets); do \
ln -sf "$${target}-gcc-4.7" "dest/usr/bin/$${target}-gcc"; \
ln -sf "$${target}-g++-4.7" "dest/usr/bin/$${target}-g++"; \
diff --git a/src/c89/c89.sh b/src/c89/c89.sh
deleted file mode 100644
index 52d6d45..0000000
--- a/src/c89/c89.sh
+++ /dev/null
@@ -1,2 +0,0 @@
-#!/bin/sh
-exec /usr/bin/cc -std=c89 "$@"
diff --git a/src/c99/c99.sh b/src/c99/c99.sh
deleted file mode 100644
index 15cab47..0000000
--- a/src/c99/c99.sh
+++ /dev/null
@@ -1,2 +0,0 @@
-#!/bin/sh
-exec /usr/bin/cc -std=c99 "$@"