freebsd-ports/devel/rudiments/files/extra-patch-src+Makefile.in
Akinori MUSHA 7e390b4a19 Do not build the profiled library on 5-CURRENT, where g++ -pg produces
strange function calls that the assembler cannot understand.

Submitted by:	bento

http://bento.freebsd.org/errorlogs/5-latest/rudiments-0.24.log
2002-12-07 10:28:15 +00:00

25 lines
883 B
Text

--- src/Makefile.in.orig Mon Apr 15 13:21:24 2002
+++ src/Makefile.in Sat Dec 7 19:27:01 2002
@@ -17,7 +17,6 @@
all:
$(MAKE) ../lib/librudiments.a; \
- $(MAKE) ../lib/librudiments_p.a; \
if ( test ! -n "@MINGW32@" -a ! -n "@CYGWIN@" -a ! -n "@UWIN@" ); then \
$(MAKE) ../lib/librudiments.so.$(VERSION); \
else \
@@ -48,7 +47,6 @@
install:
$(top_srcdir)/mkinstalldirs $(libdir)
$(INSTALL) -m 644 ../lib/librudiments.a $(libdir); \
- $(INSTALL) -m 644 ../lib/librudiments_p.a $(libdir); \
if ( test ! -n "@MINGW32@" -a ! -n "@CYGWIN@" -a ! -n "@UWIN@" ); then \
$(RM) $(libdir)/librudiments.so*; \
$(INSTALL) ../lib/librudiments.so.$(VERSION) $(libdir); \
@@ -62,6 +60,5 @@
uninstall:
$(RM) $(libdir)/librudiments.so*
$(RM) $(libdir)/librudiments.a
- $(RM) $(libdir)/librudiments_p.a
$(RM) $(libdir)/librudiments.dll
$(RM) $(libdir)/librudiments.lib