summaryrefslogtreecommitdiffstats
path: root/gcc.pkg
diff options
context:
space:
mode:
authorP. J. McDermott <pjm@nac.net>2013-05-18 12:25:16 (EDT)
committer P. J. McDermott <pjm@nac.net>2013-05-18 12:25:16 (EDT)
commit275c6d69c9e7e3e1d4f7ad18354d2471f16458f1 (patch)
tree4668216ed40bb32c3b3992937439d3ba2b654a15 /gcc.pkg
parentda6571d75ad299cfbe3984930c86cecf3be29401 (diff)
Make gcc and g++ target-specific.
Diffstat (limited to 'gcc.pkg')
-rw-r--r--gcc.pkg/control7
-rw-r--r--gcc.pkg/files2
-rwxr-xr-xgcc.pkg/postinst5
-rwxr-xr-xgcc.pkg/prerm5
4 files changed, 0 insertions, 19 deletions
diff --git a/gcc.pkg/control b/gcc.pkg/control
deleted file mode 100644
index b01803c..0000000
--- a/gcc.pkg/control
+++ /dev/null
@@ -1,7 +0,0 @@
-Package: gcc
-Architecture: all
-Depends: cpp (>= 0.1), gcc-4.6 (>= 4.6.2-1)
-Description: GNU C compiler
- This is the GNU C compiler, a fairly portable optimizing compiler for C.
- .
- This package depends on the default version of the GNU C compiler.
diff --git a/gcc.pkg/files b/gcc.pkg/files
deleted file mode 100644
index c075821..0000000
--- a/gcc.pkg/files
+++ /dev/null
@@ -1,2 +0,0 @@
-/usr/bin/c89
-/usr/bin/c99
diff --git a/gcc.pkg/postinst b/gcc.pkg/postinst
deleted file mode 100755
index 9fd34c0..0000000
--- a/gcc.pkg/postinst
+++ /dev/null
@@ -1,5 +0,0 @@
-#! /bin/sh
-
-if [ "${1}" = configure ]; then
- update-alternatives --install /usr/bin/cc cc /usr/bin/gcc 20
-fi
diff --git a/gcc.pkg/prerm b/gcc.pkg/prerm
deleted file mode 100755
index 5d0150b..0000000
--- a/gcc.pkg/prerm
+++ /dev/null
@@ -1,5 +0,0 @@
-#! /bin/sh
-
-if [ "${1}" = remove ]; then
- update-alternatives --remove cc /usr/bin/gcc
-fi