diff options
author | pjd <pjd@FreeBSD.org> | 2004-05-03 07:21:59 +0000 |
---|---|---|
committer | pjd <pjd@FreeBSD.org> | 2004-05-03 07:21:59 +0000 |
commit | ffd473d54b3becbc2879a79e45c66efdcea2929e (patch) | |
tree | d1236085cd492fc61ed7234bcd9ef6681e48c01c /sbin/ggate | |
parent | 7e21b7fd59877cfbd0911e6ad74e319026f28254 (diff) | |
download | FreeBSD-src-ffd473d54b3becbc2879a79e45c66efdcea2929e.zip FreeBSD-src-ffd473d54b3becbc2879a79e45c66efdcea2929e.tar.gz |
Paths correction.
Pointed out by: ache, make buildworld
Diffstat (limited to 'sbin/ggate')
-rw-r--r-- | sbin/ggate/ggatec/Makefile | 4 | ||||
-rw-r--r-- | sbin/ggate/ggated/Makefile | 4 | ||||
-rw-r--r-- | sbin/ggate/ggatel/Makefile | 4 |
3 files changed, 6 insertions, 6 deletions
diff --git a/sbin/ggate/ggatec/Makefile b/sbin/ggate/ggatec/Makefile index 07c7a52..80525a3 100644 --- a/sbin/ggate/ggatec/Makefile +++ b/sbin/ggate/ggatec/Makefile @@ -1,6 +1,6 @@ # $FreeBSD$ -.PATH: ../shared +.PATH: ${.CURDIR}/../shared BINDIR= /sbin PROG= ggatec @@ -9,7 +9,7 @@ MAN= ggatec.8 DPADD= ${LIBGEOM} ${LIBSBUF} ${LIBBSDXML} LDADD= -lgeom -lsbuf -lbsdxml WARNS= 6 -CFLAGS+=-I../shared +CFLAGS+=-I${.CURDIR}/../shared CFLAGS+=-DLIBGEOM .include <bsd.prog.mk> diff --git a/sbin/ggate/ggated/Makefile b/sbin/ggate/ggated/Makefile index feae550..e016b8a 100644 --- a/sbin/ggate/ggated/Makefile +++ b/sbin/ggate/ggated/Makefile @@ -1,12 +1,12 @@ # $FreeBSD$ -.PATH: ../shared +.PATH: ${.CURDIR}/../shared BINDIR= /sbin PROG= ggated SRCS= ggated.c ggate.c MAN= ggated.8 WARNS= 6 -CFLAGS+=-I../shared +CFLAGS+=-I${.CURDIR}/../shared .include <bsd.prog.mk> diff --git a/sbin/ggate/ggatel/Makefile b/sbin/ggate/ggatel/Makefile index a72a052..e6fd870 100644 --- a/sbin/ggate/ggatel/Makefile +++ b/sbin/ggate/ggatel/Makefile @@ -1,6 +1,6 @@ # $FreeBSD$ -.PATH: ../shared +.PATH: ${.CURDIR}/../shared BINDIR= /sbin PROG= ggatel @@ -9,7 +9,7 @@ MAN= ggatel.8 DPADD= ${LIBGEOM} ${LIBSBUF} ${LIBBSDXML} LDADD= -lgeom -lsbuf -lbsdxml WARNS= 6 -CFLAGS+=-I../shared +CFLAGS+=-I${.CURDIR}/../shared CFLAGS+=-DLIBGEOM .include <bsd.prog.mk> |