diff options
author | ru <ru@FreeBSD.org> | 2004-08-12 20:06:01 +0000 |
---|---|---|
committer | ru <ru@FreeBSD.org> | 2004-08-12 20:06:01 +0000 |
commit | 12ae2e3522d830115b06be140dd68c5135aca20a (patch) | |
tree | 2f729fc06426324ad8b4f008f094b4485873e179 /usr.sbin | |
parent | 77b71ef863b9c988491767af109973bafd155a55 (diff) | |
download | FreeBSD-src-12ae2e3522d830115b06be140dd68c5135aca20a.zip FreeBSD-src-12ae2e3522d830115b06be140dd68c5135aca20a.tar.gz |
Don't put DEBUG to CFLAGS, we have the standard DEBUG_FLAGS for this.
Diffstat (limited to 'usr.sbin')
-rw-r--r-- | usr.sbin/pkg_install/add/Makefile | 2 | ||||
-rw-r--r-- | usr.sbin/pkg_install/create/Makefile | 2 | ||||
-rw-r--r-- | usr.sbin/pkg_install/delete/Makefile | 2 | ||||
-rw-r--r-- | usr.sbin/pkg_install/info/Makefile | 2 | ||||
-rw-r--r-- | usr.sbin/pkg_install/lib/Makefile | 2 | ||||
-rw-r--r-- | usr.sbin/pkg_install/sign/Makefile | 2 | ||||
-rw-r--r-- | usr.sbin/pkg_install/version/Makefile | 2 |
7 files changed, 6 insertions, 8 deletions
diff --git a/usr.sbin/pkg_install/add/Makefile b/usr.sbin/pkg_install/add/Makefile index 9267f06..89988e7 100644 --- a/usr.sbin/pkg_install/add/Makefile +++ b/usr.sbin/pkg_install/add/Makefile @@ -3,7 +3,7 @@ PROG= pkg_add SRCS= main.c perform.c futil.c extract.c -CFLAGS+= ${DEBUG} -I${.CURDIR}/../lib +CFLAGS+= -I${.CURDIR}/../lib WARNS?= 3 WFORMAT?= 1 diff --git a/usr.sbin/pkg_install/create/Makefile b/usr.sbin/pkg_install/create/Makefile index 2971ba3..42718c6 100644 --- a/usr.sbin/pkg_install/create/Makefile +++ b/usr.sbin/pkg_install/create/Makefile @@ -3,7 +3,7 @@ PROG= pkg_create SRCS= main.c perform.c pl.c -CFLAGS+= ${DEBUG} -I${.CURDIR}/../lib +CFLAGS+= -I${.CURDIR}/../lib WARNS?= 3 WFORMAT?= 1 diff --git a/usr.sbin/pkg_install/delete/Makefile b/usr.sbin/pkg_install/delete/Makefile index 3e8165c..c346ea7 100644 --- a/usr.sbin/pkg_install/delete/Makefile +++ b/usr.sbin/pkg_install/delete/Makefile @@ -3,7 +3,7 @@ PROG= pkg_delete SRCS= main.c perform.c -CFLAGS+= ${DEBUG} -I${.CURDIR}/../lib +CFLAGS+= -I${.CURDIR}/../lib WARNS?= 6 WFORMAT?= 1 diff --git a/usr.sbin/pkg_install/info/Makefile b/usr.sbin/pkg_install/info/Makefile index b1fcb08..675f7ca 100644 --- a/usr.sbin/pkg_install/info/Makefile +++ b/usr.sbin/pkg_install/info/Makefile @@ -3,7 +3,7 @@ PROG= pkg_info SRCS= main.c perform.c show.c -CFLAGS+= ${DEBUG} -I${.CURDIR}/../lib +CFLAGS+= -I${.CURDIR}/../lib WARNS?= 6 WFORMAT?= 1 diff --git a/usr.sbin/pkg_install/lib/Makefile b/usr.sbin/pkg_install/lib/Makefile index d248047..b868312 100644 --- a/usr.sbin/pkg_install/lib/Makefile +++ b/usr.sbin/pkg_install/lib/Makefile @@ -5,8 +5,6 @@ INTERNALLIB= YES SRCS= file.c msg.c plist.c str.c exec.c global.c pen.c match.c \ deps.c version.c pkgwrap.c url.c -CFLAGS+= ${DEBUG} - WARNS?= 3 WFORMAT?= 1 diff --git a/usr.sbin/pkg_install/sign/Makefile b/usr.sbin/pkg_install/sign/Makefile index 7821b52..35fe7ec 100644 --- a/usr.sbin/pkg_install/sign/Makefile +++ b/usr.sbin/pkg_install/sign/Makefile @@ -7,7 +7,7 @@ MLINKS= pkg_sign.1 pkg_check.1 SRCS= main.c check.c common.c gzip.c pgp_check.c pgp_sign.c \ sha1.c sign.c stand.c x509.c -CFLAGS+= ${DEBUG} -I${.CURDIR}/../lib +CFLAGS+= -I${.CURDIR}/../lib DPADD= ${LIBINSTALL} ${LIBMD} ${LIBCRYPTO} LDADD= ${LIBINSTALL} -lmd -lcrypto diff --git a/usr.sbin/pkg_install/version/Makefile b/usr.sbin/pkg_install/version/Makefile index a1221eb..71168ee 100644 --- a/usr.sbin/pkg_install/version/Makefile +++ b/usr.sbin/pkg_install/version/Makefile @@ -3,7 +3,7 @@ PROG= pkg_version SRCS= main.c perform.c -CFLAGS+= ${DEBUG} -I${.CURDIR}/../lib +CFLAGS+= -I${.CURDIR}/../lib WARNS?= 6 WFORMAT?= 1 |