diff options
author | ache <ache@FreeBSD.org> | 1997-01-16 17:58:14 +0000 |
---|---|---|
committer | ache <ache@FreeBSD.org> | 1997-01-16 17:58:14 +0000 |
commit | 4980dadaa505f34a1f371c91432b872c95f8e267 (patch) | |
tree | 12b7eefddeafe73e486d9754174c08872fe9e138 /gnu | |
parent | 2ffd061c91c6e9ffc30fe7a9a6dcb80996ac2cc4 (diff) | |
download | FreeBSD-src-4980dadaa505f34a1f371c91432b872c95f8e267.zip FreeBSD-src-4980dadaa505f34a1f371c91432b872c95f8e267.tar.gz |
Simplify it using SRCDIR
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/usr.bin/gdb/doc/Makefile | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/gnu/usr.bin/gdb/doc/Makefile b/gnu/usr.bin/gdb/doc/Makefile index f124be4..a7e97f7 100644 --- a/gnu/usr.bin/gdb/doc/Makefile +++ b/gnu/usr.bin/gdb/doc/Makefile @@ -1,13 +1,11 @@ INFO = gdb gdbint stabs annotate -GDBDIR= ${.CURDIR}/../../../../contrib/gdb -.PATH: ${GDBDIR}/gdb/doc +SRCDIR= ${.CURDIR}/../../../../contrib/gdb/gdb/doc INFOSECTION= "Gdb Documentation" INFOENTRY_annotate= "* GDB annotation: (annotate). Annotations for the GNU Debugger (GDB)." -MAKEINFOFLAGS += -I ${GDBDIR}/gdb/doc -MAKEINFOFLAGS += -I ${GDBDIR}/../libreadline/doc -MAKEINFOFLAGS += -I ${GDBDIR}/readline/doc +MAKEINFOFLAGS += -I ${.CURDIR}/../../../../contrib/libreadline/doc +MAKEINFOFLAGS += -I ${SRCDIR}/../../readline/doc .include <bsd.info.mk> |