Date: Sat, 24 Sep 2016 17:50:11 +0000 (UTC) From: Marcel Moolenaar <marcel@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r306300 - head/contrib/ofed/usr.lib/libsdp Message-ID: <201609241750.u8OHoBpP092413@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: marcel Date: Sat Sep 24 17:50:11 2016 New Revision: 306300 URL: https://svnweb.freebsd.org/changeset/base/306300 Log: When MAKEOBJDIRPREFIX points to a case-insensitive file system, the build can break when different source files create the same target files (case-insensitivity speaking). This is the case for object files compiled with -fpic and shared libraries. The former uses an extension of ".So", and the latter an extension ".so". Rename shared object files from *.So to *.pico to match what NetBSD does. Missed in r306297 MFC after: 1 month Sponsored by: Bracket Computing Differential Revision: https://reviews.freebsd.org/D7906 Modified: head/contrib/ofed/usr.lib/libsdp/Makefile Modified: head/contrib/ofed/usr.lib/libsdp/Makefile ============================================================================== --- head/contrib/ofed/usr.lib/libsdp/Makefile Sat Sep 24 17:29:27 2016 (r306299) +++ head/contrib/ofed/usr.lib/libsdp/Makefile Sat Sep 24 17:50:11 2016 (r306300) @@ -22,4 +22,4 @@ CFLAGS+= -I${OFEDSYS}/include # Remove .[ly] since the checked-in version is preferred. .SUFFIXES: -.SUFFIXES: .o .po .So .c .ln +.SUFFIXES: .o .po .pico .c .ln
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201609241750.u8OHoBpP092413>