From a6cee6c601eba39a5d97cf215ae07ec62f536777 Mon Sep 17 00:00:00 2001 From: P. J. McDermott Date: Sat, 18 May 2013 14:19:50 -0400 Subject: gcc: Provide gcc and cc links if host == target. --- (limited to 'gcc.pkg.in') diff --git a/gcc.pkg.in/postinst b/gcc.pkg.in/postinst index 9fd34c0..c0be054 100755 --- a/gcc.pkg.in/postinst +++ b/gcc.pkg.in/postinst @@ -1,5 +1,8 @@ #! /bin/sh -if [ "${1}" = configure ]; then - update-alternatives --install /usr/bin/cc cc /usr/bin/gcc 20 +if [ "x${1}" = 'xconfigure' ]; then + if [ "x$(cat /etc/proteanos_arch)" = 'x@PKG_TARGET_ARCH@' ]; then + ln -sf @PKG_TARGET_ARCH@-gcc /usr/bin/gcc + update-alternatives --install /usr/bin/cc cc /usr/bin/gcc 20 + fi fi diff --git a/gcc.pkg.in/prerm b/gcc.pkg.in/prerm index 5d0150b..a980d35 100755 --- a/gcc.pkg.in/prerm +++ b/gcc.pkg.in/prerm @@ -1,5 +1,8 @@ #! /bin/sh if [ "${1}" = remove ]; then - update-alternatives --remove cc /usr/bin/gcc + if [ "x$(cat /etc/proteanos_arch)" = 'x@PKG_TARGET_ARCH@' ]; then + rm -f /usr/bin/gcc + update-alternatives --remove cc /usr/bin/gcc + fi fi -- cgit v0.9.1