diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2011-06-24 22:47:52 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2011-06-24 22:47:52 +0000 |
commit | f372f6cf11932d65e1f5adece4528ee74b93782a (patch) | |
tree | 3fd8174aaed77d1235190aeaa13f945d486d7dbd /gnu | |
parent | c4eef505d5a66e57d560971bc35dea576051f040 (diff) |
use .PATH instead of .PATH.c & .PATH.m; something in the recent bsd.man.mk
commit exposed a build problem which used to spuriously affect builds.
It is possible that .PATH.suffix is sutbly broken in make(1), but there is
no real need to use that construct here in any case.
ok miod
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/lib/libobjc/Makefile.bsd-wrapper | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/gnu/lib/libobjc/Makefile.bsd-wrapper b/gnu/lib/libobjc/Makefile.bsd-wrapper index 536a4edca25..bd5073ef425 100644 --- a/gnu/lib/libobjc/Makefile.bsd-wrapper +++ b/gnu/lib/libobjc/Makefile.bsd-wrapper @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile.bsd-wrapper,v 1.6 2010/05/10 18:20:31 drahn Exp $ +# $OpenBSD: Makefile.bsd-wrapper,v 1.7 2011/06/24 22:47:51 deraadt Exp $ LIB= objc @@ -109,8 +109,7 @@ tags: .SUFFIXES: .m -.PATH.c: ${.CURDIR}/libobjc -.PATH.m: ${.CURDIR}/libobjc +.PATH: ${.CURDIR}/libobjc COMPILE.m=${COMPILE.c} -fgnu-runtime |