diff options
author | Baptiste Daroussin <bapt@FreeBSD.org> | 2013-07-26 06:47:04 +0000 |
---|---|---|
committer | Baptiste Daroussin <bapt@FreeBSD.org> | 2013-07-26 06:47:04 +0000 |
commit | 4fb79c18e5658fbd03dcc58012928ddb03b25f33 (patch) | |
tree | ccbec4670156f69d1163aa4a91664ba36dd7f8b9 /x11 | |
parent | b89299d16790bc73b0b6b7c1206d358553855eaf (diff) |
Fix build with linker that does not copy the dt_need from libraries it links
with like recent binutils.
Notes
Notes:
svn path=/head/; revision=323695
Diffstat (limited to 'x11')
-rw-r--r-- | x11/xvattr/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/x11/xvattr/Makefile b/x11/xvattr/Makefile index 918086f7ba8f..f6bcfa0fd508 100644 --- a/x11/xvattr/Makefile +++ b/x11/xvattr/Makefile @@ -38,9 +38,9 @@ post-extract: do-build: cd ${WRKSRC} && ${CC} ${CFLAGS} ${PORTNAME}.c -o ${PORTNAME} \ - `pkg-config --cflags --libs xv` + `pkg-config --cflags --libs xv x11` cd ${WRKSRC} && ${CC} ${CFLAGS} g${PORTNAME}.c -o g${PORTNAME} \ - `pkg-config --cflags --libs ${GTK_PC} xv` + `pkg-config --cflags --libs ${GTK_PC} xv x11` do-install: ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin |