mirror of
https://git.freebsd.org/ports.git
synced 2025-06-27 15:40:32 -04:00
- Install more complete set of manual pages - Do not patch+sed(1) the script, just put in on SHEBANG_FILES - Remove patches which apparently were to avoid dependency on GNU make, but they are incomplete and did not do the job well (e.g., tests were broken due to circular dependencies) - Unbreak the tests by calling /bin/sh rather than /bin/bash
17 lines
412 B
Text
17 lines
412 B
Text
--- doc/examples/demo-tracef/Makefile.orig 2016-08-08 21:25:36 UTC
|
|
+++ doc/examples/demo-tracef/Makefile
|
|
@@ -15,12 +15,8 @@
|
|
#
|
|
# This makefile is purposefully kept simple to support GNU and BSD make.
|
|
|
|
-ifdef AM_CC
|
|
- CC = $(AM_CC)
|
|
-endif
|
|
-
|
|
-LIBS = -ldl -llttng-ust # On Linux
|
|
-#LIBS = -lc # On BSD
|
|
+#LIBS = -ldl -llttng-ust # On Linux
|
|
+LIBS = -llttng-ust # On FreeBSD
|
|
LOCAL_CPPFLAGS += -I.
|
|
|
|
all: demo-tracef
|