From aa26a0e50022bf5707db50b15e967c6c813bff97 Mon Sep 17 00:00:00 2001 From: "Dmitry V. Levin" Date: Wed, 2 Oct 2002 16:30:58 +0000 Subject: [PATCH] fixed typos --- scripts/brp-fixup.in | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/scripts/brp-fixup.in b/scripts/brp-fixup.in index e0bedfe..c67cde5 100755 --- a/scripts/brp-fixup.in +++ b/scripts/brp-fixup.in @@ -76,17 +76,17 @@ echo "Verifying and fixing files in $RPM_BUILD_ROOT ($SHOW_METHODS)" : ${RPM_FIXUP_TOPDIR:=} [ -d "$RPM_BUILD_ROOT$RPM_COMPRESS_TOPDIR" ] || exit 0 -if [ -z "$FIXUP_BINCONFIG" -a -d ./usr/bin ]; then +if [ -n "$FIXUP_BINCONFIG" -a -d ./usr/bin ]; then find ./usr/bin -maxdepth 1 -type f -name \*-config -print0 | xargs -r0 @RPMCONFIGDIR@/fixup-binconfig fi -if [ -z "$FIXUP_PKGCONFIG" -a -d ./usr/lib/pkgconfig ]; then +if [ -n "$FIXUP_PKGCONFIG" -a -d ./usr/lib/pkgconfig ]; then find ./usr/lib/pkgconfig -maxdepth 1 -type f -name \*.pc -print0 | xargs -r0 @RPMCONFIGDIR@/fixup-pkgconfig fi -if [ -z "$FIXUP_BINCONFIG" ]; then +if [ -n "$FIXUP_LIBTOOL" ]; then find .$RPM_FIXUP_TOPDIR -type f -name \*.la -print0 | xargs -r0 @RPMCONFIGDIR@/fixup-libtool fi