diff options
author | Roy Marples <uberlord@gentoo.org> | 2006-10-06 12:21:16 +0000 |
---|---|---|
committer | Roy Marples <uberlord@gentoo.org> | 2006-10-06 12:21:16 +0000 |
commit | 761adad8911310575abbf5abb61eaa45448995a4 (patch) | |
tree | d5e57e652fe7b78ab35e751d6f4c1590fd0017d6 /sys-freebsd/freebsd-lib/files | |
parent | Version bump. Bug #147971, reported by Hod <coil93 at mail.ee>. (diff) | |
download | gentoo-2-761adad8911310575abbf5abb61eaa45448995a4.tar.gz gentoo-2-761adad8911310575abbf5abb61eaa45448995a4.tar.bz2 gentoo-2-761adad8911310575abbf5abb61eaa45448995a4.zip |
sparc has the same csu issue as amd64 - lacking a dir to install to
(Portage version: 2.1.2_pre2-r2)
Diffstat (limited to 'sys-freebsd/freebsd-lib/files')
-rw-r--r-- | sys-freebsd/freebsd-lib/files/freebsd-lib-6.1-csu.patch | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/sys-freebsd/freebsd-lib/files/freebsd-lib-6.1-csu.patch b/sys-freebsd/freebsd-lib/files/freebsd-lib-6.1-csu.patch new file mode 100644 index 000000000000..075f2780e693 --- /dev/null +++ b/sys-freebsd/freebsd-lib/files/freebsd-lib-6.1-csu.patch @@ -0,0 +1,20 @@ +--- lib/csu/amd64/Makefile.orig 2006-07-04 07:49:58 -0300 ++++ lib/csu/amd64/Makefile 2006-07-04 07:50:15 -0300 +@@ -16,6 +16,7 @@ + ${CC} ${CFLAGS} -DGCRT -c -o gcrt1.o ${.CURDIR}/crt1.c + + realinstall: ++ ${INSTALL} -d ${DESTDIR}${LIBDIR} + ${INSTALL} -o ${LIBOWN} -g ${LIBGRP} -m ${LIBMODE} \ + ${OBJS} ${DESTDIR}${LIBDIR} + +--- lib/csu/sparc64/Makefile.orig 2006-10-06 15:13:55 +0100 ++++ lib/csu/sparc64/Makefile 2006-10-06 15:15:06 +0100 +@@ -15,6 +15,7 @@ + ${CC} ${CFLAGS} -DGCRT -c -o gcrt1.o ${.ALLSRC} + + realinstall: ++ ${INSTALL} -d ${DESTDIR}${LIBDIR} + ${INSTALL} -o ${LIBOWN} -g ${LIBGRP} -m ${LIBMODE} \ + ${OBJS} ${DESTDIR}${LIBDIR} + |