diff options
author | Marc Espie <espie@cvs.openbsd.org> | 2010-05-25 00:24:59 +0000 |
---|---|---|
committer | Marc Espie <espie@cvs.openbsd.org> | 2010-05-25 00:24:59 +0000 |
commit | 3f6ff3de63c6883a1a833f6e0c57ef8b4c8d9fee (patch) | |
tree | 5fa727db7c950ae763d01f0257b99ecf115e0b39 /gnu/egcs | |
parent | 8f05aa0ea6f30ccb95a715cef057f45465e3e62f (diff) |
unlink g77 from the build.
as discussed with Theo, so that he can synch set.
(eventual gcc2 fallout to fix later)
Diffstat (limited to 'gnu/egcs')
-rw-r--r-- | gnu/egcs/Makefile.bsd-wrapper | 4 | ||||
-rw-r--r-- | gnu/egcs/gcc/Makefile.bsd-wrapper | 19 |
2 files changed, 5 insertions, 18 deletions
diff --git a/gnu/egcs/Makefile.bsd-wrapper b/gnu/egcs/Makefile.bsd-wrapper index 953c06eeb1e..00dea045df7 100644 --- a/gnu/egcs/Makefile.bsd-wrapper +++ b/gnu/egcs/Makefile.bsd-wrapper @@ -1,9 +1,9 @@ -# $OpenBSD: Makefile.bsd-wrapper,v 1.10 2010/05/10 18:20:31 drahn Exp $ +# $OpenBSD: Makefile.bsd-wrapper,v 1.11 2010/05/25 00:24:58 espie Exp $ .include <bsd.own.mk> # Note that this Makefile is only used for make obj and GCC2 architectures. -SUBDIR+= libio libf2c libstdc++ +SUBDIR+= libio libstdc++ # just so that the main directory will have a subdir, which simplifies # libf2c build diff --git a/gnu/egcs/gcc/Makefile.bsd-wrapper b/gnu/egcs/gcc/Makefile.bsd-wrapper index d2914bbef6e..93acc73d76c 100644 --- a/gnu/egcs/gcc/Makefile.bsd-wrapper +++ b/gnu/egcs/gcc/Makefile.bsd-wrapper @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile.bsd-wrapper,v 1.22 2009/03/09 21:07:06 miod Exp $ +# $OpenBSD: Makefile.bsd-wrapper,v 1.23 2010/05/25 00:24:58 espie Exp $ MAN= cpp.1 gcc.1 protoize.1 gcov.1 MLINKS+= gcc.1 cc.1 @@ -7,10 +7,9 @@ MLINKS+= protoize.1 unprotoize.1 .if defined(BOOTSTRAP) LANGUAGES=--enable-languages=c .else -LANGUAGES=--enable-languages='c,c++,objc,f77' -MAN+= cp/g++.1 f/g77.1 +LANGUAGES=--enable-languages='c,c++,objc' +MAN+= cp/g++.1 MLINKS+= g++.1 c++.1 -MLINKS+= g77.1 f77.1 BEFOREMAN= config.status .endif @@ -121,23 +120,11 @@ install: maninstall target_path install chown -R ${BINOWN}:${BINGRP} ${DESTDIR}/usr/lib/gcc-lib chmod -R a+rX ${DESTDIR}/usr/lib/gcc-lib -# if [ -e ${DESTDIR}/usr/lib/libf2c.a ]; then \ -# chown ${BINOWN}:${BINGRP} ${DESTDIR}/usr/lib/libf2c.a; \ -# chmod 444 ${DESTDIR}/usr/lib/libf2c.a; \ -# fi - if [ -e ${DESTDIR}/usr/include/f2c.h ]; then \ - chown ${BINOWN}:${BINGRP} ${DESTDIR}/usr/include/f2c.h; \ - chmod 444 ${DESTDIR}/usr/include/f2c.h; \ - fi ${INSTALL} ${INSTALL_COPY} ${INSTALL_STRIP} -m 755 cpp \ ${DESTDIR}/usr/libexec/cpp ${INSTALL} ${INSTALL_COPY} ${INSTALL_STRIP} -m 755 xgcc \ ${DESTDIR}/usr/bin/gcc ln -f ${DESTDIR}/usr/bin/gcc ${DESTDIR}/usr/bin/cc - [ -f ${DESTDIR}/usr/bin/g77 ] && \ - ln -f ${DESTDIR}/usr/bin/g77 ${DESTDIR}/usr/bin/f77 -# ln -fs `cat target-path`/cpp \ -# ${DESTDIR}/usr/libexec for i in ${FAKE_FILES}; do \ touch ${DESTDIR}$$i; \ done |