Skip to content
Snippets Groups Projects
Verified Commit 8aa68a16 authored by sunpoet's avatar sunpoet
Browse files

devel/libinjection: Fix libinjection.so

- Bump PORTREVISION for package change

$+ is not recognized by make, therefore the libinjection.so is incomplete.
parent 4c3786ca
No related branches found
No related tags found
No related merge requests found
PORTNAME= libinjection
PORTVERSION= 3.10.0
PORTREVISION= 1
DISTVERSIONPREFIX= v
CATEGORIES= devel
......
--- Makefile.orig 2017-05-21 20:44:26 UTC
+++ Makefile
@@ -63,7 +63,7 @@ libinjection_html5.o: libinjection.h libinjection_html
${CC} ${CFLAGS} -c -o libinjection_html5.o libinjection_html5.c
${SHAREDLIB}: ${OBJECTS}
- $(CC) $+ -shared -lc -o $@
+ $(CC) ${OBJECTS} -shared -lc -o $@
${STATICLIB}: ${OBJECTS}
rm -f ${STATICLIB}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment