diff options
author | veego <veego@pkgsrc.org> | 2002-05-14 18:43:52 +0000 |
---|---|---|
committer | veego <veego@pkgsrc.org> | 2002-05-14 18:43:52 +0000 |
commit | b41e497a748196ae97c61b53ca626889826fd0b3 (patch) | |
tree | 1d272bfed57b6bf1f78285d45f66899c3ee0f972 /graphics | |
parent | e0fe1a65e9491b581be2d43110352e6c02624a75 (diff) | |
download | pkgsrc-b41e497a748196ae97c61b53ca626889826fd0b3.tar.gz |
Add a missing SPACE, which was gone in the last commit and would result in
build errors due to two -I's with no space between them.
Diffstat (limited to 'graphics')
-rw-r--r-- | graphics/gdk-pixbuf/buildlink.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/graphics/gdk-pixbuf/buildlink.mk b/graphics/gdk-pixbuf/buildlink.mk index 7a35a935415..11eb72d68e7 100644 --- a/graphics/gdk-pixbuf/buildlink.mk +++ b/graphics/gdk-pixbuf/buildlink.mk @@ -1,4 +1,4 @@ -# $NetBSD: buildlink.mk,v 1.14 2002/05/14 09:04:41 tron Exp $ +# $NetBSD: buildlink.mk,v 1.15 2002/05/14 18:43:52 veego Exp $ # # This Makefile fragment is included by packages that use gdk-pixbuf. # @@ -47,7 +47,7 @@ BUILDLINK_FILES.gdk-pixbuf+= lib/libgdk_pixbuf_xlib.* # The gdk-pixbuf headers should be found at the usual location. BUILDLINK_TRANSFORM.gdk-pixbuf= -e "s|/include/gdk-pixbuf-1.0/|/include/|g" BUILDLINK_CONFIG_WRAPPER_SED+= \ - -e "s|-I${BUILDLINK_PREFIX.gdk-pixbuf}/include/gdk-pixbuf-1.0 |-I${BUILDLINK_DIR}/include/gdk-pixbuf-1.0 -I${BUILDLINK_DIR}/include/|g" + -e "s|-I${BUILDLINK_PREFIX.gdk-pixbuf}/include/gdk-pixbuf-1.0 |-I${BUILDLINK_DIR}/include/gdk-pixbuf-1.0 -I${BUILDLINK_DIR}/include/ |g" .include "../../graphics/jpeg/buildlink.mk" .include "../../graphics/png/buildlink.mk" |