diff options
author | P. J. McDermott <pjm@nac.net> | 2013-05-18 14:19:50 (EDT) |
---|---|---|
committer | P. J. McDermott <pjm@nac.net> | 2013-05-18 14:19:50 (EDT) |
commit | a6cee6c601eba39a5d97cf215ae07ec62f536777 (patch) | |
tree | 1984c5d4668d256bc29f4ec72dcf8818309f91a9 /gcc.pkg.in/postinst | |
parent | 7be374c28308222f4558a76984996f785eefbb51 (diff) |
gcc: Provide gcc and cc links if host == target.
Diffstat (limited to 'gcc.pkg.in/postinst')
-rwxr-xr-x | gcc.pkg.in/postinst | 7 |
1 files changed, 5 insertions, 2 deletions
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 |