diff options
author | Ruslan Ermilov <ru@FreeBSD.org> | 2004-08-12 20:06:01 +0000 |
---|---|---|
committer | Ruslan Ermilov <ru@FreeBSD.org> | 2004-08-12 20:06:01 +0000 |
commit | 7d5cc1cf59822cfa7dc99781e6c84609da403e17 (patch) | |
tree | 2f729fc06426324ad8b4f008f094b4485873e179 | |
parent | 181fd12f6c811dcbea933624cf738c04e97a394b (diff) |
Notes
-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 9267f06d270c9..89988e78b2201 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 2971ba39617dd..42718c6f9273c 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 3e8165c96f861..c346ea705d796 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 b1fcb082b8d08..675f7ca454acf 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 d2480475d9e19..b8683123f0de3 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 7821b522af14d..35fe7ec83d570 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 a1221ebbf5ccf..71168ee3d23fc 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 |