1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-04 09:09:56 +00:00

Add appropriate ${DESTDIR} in front of absolute paths.

This commit is contained in:
Satoshi Asami 1997-07-18 07:27:56 +00:00
parent df8996586c
commit 85cfd1244c
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=27498
3 changed files with 3 additions and 3 deletions

View File

@ -1,5 +1,5 @@
LIB= ipx
#CFLAGS+=-DLIBC_SCCS -I/sys
#CFLAGS+=-DLIBC_SCCS -I${DESTDIR}/sys
SRCS= ipx_addr.c ipx_ntoa.c
MAN3= ipx.3

View File

@ -1,7 +1,7 @@
# @(#)Makefile 8.1 (Berkeley) 6/4/93
LIB= scsi
#CFLAGS+=-DLIBC_SCCS -I/sys
#CFLAGS+=-DLIBC_SCCS -I${DESTDIR}/sys
SRCS= scsi.c
MAN3= scsi.3

View File

@ -3,7 +3,7 @@
LIB= util
SHLIB_MAJOR= 2
SHLIB_MINOR= 2
CFLAGS+=-Wall -DLIBC_SCCS -I${.CURDIR} -I/sys
CFLAGS+=-Wall -DLIBC_SCCS -I${.CURDIR} -I${DESTDIR}/sys
#CFLAGS+=LOGIN_CAP_AUTH
SRCS= login.c login_tty.c logout.c logwtmp.c pty.c setproctitle.c \
login_cap.c login_class.c login_auth.c login_times.c login_ok.c \