From 69e1ed308b3707ecae387ab3cc8c4df1e968b76f Mon Sep 17 00:00:00 2001
From: P. J. McDermott <pjm@nac.net>
Date: Sat, 18 May 2013 13:39:05 -0400
Subject: Delete c89 and c99 scripts.

These should be generated by postinst for native compilers (if host arch ==
target arch).
---
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 "$@"
--
cgit v0.9.1