- 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
18 lines
412 B
Plaintext
18 lines
412 B
Plaintext
--- 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
|