diff options
author | rakuco <rakuco@FreeBSD.org> | 2016-01-03 06:58:27 +0800 |
---|---|---|
committer | rakuco <rakuco@FreeBSD.org> | 2016-01-03 06:58:27 +0800 |
commit | 1ba86374ee3a756a024e0ffc18a4d40b2e1d6afd (patch) | |
tree | 5223258acbd0cbe1e8953d67bf8b0c82b89398d1 /x11/antimicro/Makefile | |
parent | 79da8a249f4e3d6e16f579f94d19f9b4a873924b (diff) | |
download | freebsd-ports-gnome-1ba86374ee3a756a024e0ffc18a4d40b2e1d6afd.tar.gz freebsd-ports-gnome-1ba86374ee3a756a024e0ffc18a4d40b2e1d6afd.tar.zst freebsd-ports-gnome-1ba86374ee3a756a024e0ffc18a4d40b2e1d6afd.zip |
Fix linking after r404875.
There was a typo in the line setting LDFLAGS: we need -L/some/dir, not
/some/dir.
From the logs:
/usr/local/lib: file not recognized: Is a directory
c++: error: linker command failed with exit code 1 (use -v to see invocation)
Thanks to antoine for raising the issue, and sorry for the brain fart.
MFH: 2015Q4
Diffstat (limited to 'x11/antimicro/Makefile')
-rw-r--r-- | x11/antimicro/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/x11/antimicro/Makefile b/x11/antimicro/Makefile index 43c791368e29..1b022344f16c 100644 --- a/x11/antimicro/Makefile +++ b/x11/antimicro/Makefile @@ -16,7 +16,7 @@ GH_ACCOUNT= Ryochan7 # Upstream assumes ${LOCALBASE}/lib is part of the default linker path. Pull # request 268 fixes it for X11 libraries, but SDL2 is still using pkg-config # output (without full paths). -LDFLAGS+= ${LOCALBASE}/lib +LDFLAGS+= -L${LOCALBASE}/lib USE_XORG= x11 xtst USE_QT5= linguisttools_build qmake_build buildtools_build widgets network |