mirror of
https://git.freebsd.org/ports.git
synced 2025-06-27 15:40:32 -04:00
LTTng stands for Linux Trace Toolkit: next generation. It's a modern toolkit for tracing Linux (And now FreeBSD, only userspace now) programs. PR: 216142 Submitted by: mmokhi Reported by: mmokhi Reviewed by: feld, mat Approved by: feld, mat (mentors) Differential Revision: https://reviews.freebsd.org/D9200
22 lines
738 B
Text
22 lines
738 B
Text
--- tests/gcc-weak-hidden/Makefile.am.orig 2016-10-18 22:44:06 UTC
|
|
+++ tests/gcc-weak-hidden/Makefile.am
|
|
@@ -1,17 +1,9 @@
|
|
AM_CPPFLAGS = -I$(top_srcdir)/include -I$(top_srcdir)/tests/utils
|
|
|
|
-noinst_LTLIBRARIES = libgcc-wh.la
|
|
-libgcc_wh_la_SOURCES = c.c d.c
|
|
-
|
|
-noinst_PROGRAMS = test-gcc-wh
|
|
-test_gcc_wh_SOURCES = main.c b.c
|
|
-test_gcc_wh_LDADD = $(top_builddir)/tests/utils/libtap.a \
|
|
- $(builddir)/libgcc-wh.la
|
|
-
|
|
noinst_SCRIPTS = test_gcc_weak_hidden
|
|
CLEANFILES = $(noinst_SCRIPTS)
|
|
EXTRA_DIST = test_gcc_weak_hidden.in
|
|
|
|
-$(noinst_SCRIPTS): %: %.in
|
|
- sed "s#@ABSTOPSRCDIR@#$(abs_top_srcdir)#g" < $< > $@
|
|
+$(noinst_SCRIPTS): $(noinst_SCRIPTS).in *
|
|
+ sed "s#@ABSTOPSRCDIR@#$(abs_top_srcdir)#g" < $(noinst_SCRIPTS).in > $@
|
|
chmod +x $@
|