diff options
author | gdt <gdt@pkgsrc.org> | 2007-06-08 20:50:55 +0000 |
---|---|---|
committer | gdt <gdt@pkgsrc.org> | 2007-06-08 20:50:55 +0000 |
commit | 242f697f694fab80e64118c853bc7f446307ad16 (patch) | |
tree | 860128d7a9cfd38fe5fc6503d2f16fd4561233ad /graphics/sane-backends | |
parent | 4e653a34ec3686a359421ebf3acb4ada629846c8 (diff) | |
download | pkgsrc-242f697f694fab80e64118c853bc7f446307ad16.tar.gz |
# lib/Makefile.in builds .o files and then .a, but rules for shlibs,
# while apparently independent, cause libtool to create .o again,
# making it possible for the ar step of the .a build to fail to find
# the .o
MAKE_JOBS_SAFE= NO
Diffstat (limited to 'graphics/sane-backends')
-rw-r--r-- | graphics/sane-backends/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/graphics/sane-backends/Makefile b/graphics/sane-backends/Makefile index be6d17cae55..f47aba763d1 100644 --- a/graphics/sane-backends/Makefile +++ b/graphics/sane-backends/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.35 2007/02/22 19:26:36 wiz Exp $ +# $NetBSD: Makefile,v 1.36 2007/06/08 20:50:55 gdt Exp $ .include "Makefile.common" COMMENT= API for access to scanners, digitals camera, frame grabbers etc. @@ -6,6 +6,12 @@ COMMENT= API for access to scanners, digitals camera, frame grabbers etc. DISTNAME= sane-backends-${SANE_VERSION} DISTFILES= ${DISTNAME}${EXTRACT_SUFX} +# lib/Makefile.in builds .o files and then .a, but rules for shlibs, +# while apparently independent, cause libtool to create .o again, +# making it possible for the ar step of the .a build to fail to find +# the .o +MAKE_JOBS_SAFE= NO + USE_TOOLS+= msgfmt USE_PKGLOCALEDIR= YES |