From 21fadc77d83622720c05a8e87948ee26708da1e1 Mon Sep 17 00:00:00 2001 From: Juan RP Date: Sat, 4 Oct 2008 16:27:27 +0200 Subject: [PATCH] Only run pkgconfig_transform_file if file is there. --HG-- extra : convert_revision : 8639a06fd5e8787331a5092ee6067ee71dad8fd2 --- pkgfs.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgfs.sh b/pkgfs.sh index a652e0a2047..1f612522756 100755 --- a/pkgfs.sh +++ b/pkgfs.sh @@ -667,8 +667,8 @@ build_tmpl_sources() local tmpf="$PKGFS_DESTDIR/$pkg/lib/pkgconfig/$i" [ -f "$tmpf" ] && \ [ -f $PKGFS_TMPLHELPDIR/pkg-config-transform.sh ] && \ - . $PKGFS_TMPLHELPDIR/pkg-config-transform.sh - pkgconfig_transform_file $tmpf + . $PKGFS_TMPLHELPDIR/pkg-config-transform.sh && \ + pkgconfig_transform_file $tmpf done