mirror of
https://git.freebsd.org/ports.git
synced 2025-07-10 05:49:22 -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
18 lines
430 B
Text
18 lines
430 B
Text
--- doc/examples/hello-static-lib/Makefile.orig 2016-08-08 21:25:36 UTC
|
|
+++ doc/examples/hello-static-lib/Makefile
|
|
@@ -14,13 +14,9 @@
|
|
#
|
|
# This makefile is purposefully kept simple to support GNU and BSD make.
|
|
|
|
-ifdef AM_CC
|
|
- CC = $(AM_CC)
|
|
-endif
|
|
-
|
|
LOCAL_CPPFLAGS += -I.
|
|
-LIBS = -ldl -llttng-ust # On Linux
|
|
-#LIBS = -lc -llttng-ust # On BSD
|
|
+#LIBS = -ldl -llttng-ust # On Linux
|
|
+LIBS = -llttng-ust # On FreeBSD
|
|
|
|
all: hello
|
|
|