diff options
author | jlam <jlam@pkgsrc.org> | 2001-06-18 20:49:00 +0000 |
---|---|---|
committer | jlam <jlam@pkgsrc.org> | 2001-06-18 20:49:00 +0000 |
commit | 8f394194915e650f7066d8fb0d5567688c91553a (patch) | |
tree | df5a8812c3460da4de92cdac4be27d685b475a09 /graphics/gdk-pixbuf | |
parent | 5adffe4185151c2cc474c10e7e858059ff8a2e75 (diff) | |
download | pkgsrc-8f394194915e650f7066d8fb0d5567688c91553a.tar.gz |
Regularize fixes to config scripts to use the same code.
Diffstat (limited to 'graphics/gdk-pixbuf')
-rw-r--r-- | graphics/gdk-pixbuf/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/graphics/gdk-pixbuf/Makefile b/graphics/gdk-pixbuf/Makefile index 8538f282b09..b1b99d7b618 100644 --- a/graphics/gdk-pixbuf/Makefile +++ b/graphics/gdk-pixbuf/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.14 2001/06/16 19:53:08 jlam Exp $ +# $NetBSD: Makefile,v 1.15 2001/06/18 20:49:01 jlam Exp $ # .include "Makefile.common" @@ -18,7 +18,8 @@ post-configure: # Fix config scripts by removing buildlink directory references. post-build: @cd ${WRKSRC}; \ - for file in gdk_pixbufConf.sh gdk_pixbuf_xlibConf.sh; do \ + config_scripts="gdk_pixbufConf.sh gdk_pixbuf_xlibConf.sh"; \ + for file in $${config_scripts}; do \ ${MV} -f $${file} $${file}.fixme; \ ${SED} -e "s|-I${BUILDLINK_DIR}/|-I${LOCALBASE}/|g" \ -e "s|-L${BUILDLINK_DIR}/|-L${LOCALBASE}/|g" \ |