diff options
author | Antoine Brodin <antoine@FreeBSD.org> | 2015-03-17 22:05:36 +0000 |
---|---|---|
committer | Antoine Brodin <antoine@FreeBSD.org> | 2015-03-17 22:05:36 +0000 |
commit | b828827f992bed0eff0b1927db5ab59c66cf8436 (patch) | |
tree | de359b730dfa35be6533f68f6c98fd9e130dc2c6 /sysutils/xacpim/files/patch-Makefile | |
parent | Fix build on head (diff) |
Use gmake instead of using rules that may or may not work depending of the
version of sys.mk
This fixes build on head after r279980
Notes
Notes:
svn path=/head/; revision=381523
Diffstat (limited to 'sysutils/xacpim/files/patch-Makefile')
-rw-r--r-- | sysutils/xacpim/files/patch-Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sysutils/xacpim/files/patch-Makefile b/sysutils/xacpim/files/patch-Makefile index cc019995d8d1..0b8b98211dcd 100644 --- a/sysutils/xacpim/files/patch-Makefile +++ b/sysutils/xacpim/files/patch-Makefile @@ -9,7 +9,7 @@ all:: ${OBJS} - ${CC} -o xacpim *.o -lX11 -L/usr/X11R6/lib -I/usr/X11R6/include -+ ${CC} -o xacpim *.o -lX11 -L${LOCALBASE}/lib -I${LOCALBASE}/include ++ ${CC} -o xacpim ${OBJS} -lX11 -L${LOCALBASE}/lib -I${LOCALBASE}/include install:: xacpim strip xacpim |