public inbox for git-commits@fedoraproject.org
help / color / mirror / Atom feed
From: Kevin Kofler <Kevin@tigcc.ticalc.org>
To: git-commits@fedoraproject.org
Subject: [rpms/xine-lib] epel9-next: xine-lib-cleanup-sources.sh: Fix removing unwanted input plugin files.
Date: Mon, 20 Jul 2026 20:01:07 GMT [thread overview]
Message-ID: <178457766732.1.14940691798773925213.rpms-xine-lib-23f22cd378b4@fedoraproject.org> (raw)
A new commit has been pushed.
Repo : rpms/xine-lib
Branch : epel9-next
Commit : 23f22cd378b4b2a44ea7e0c766d186995965cb1d
Author : Kevin Kofler <Kevin@tigcc.ticalc.org>
Date : 2011-11-20T01:55:58+01:00
Stats : +1/-1 in 1 file(s)
URL : https://src.fedoraproject.org/rpms/xine-lib/c/23f22cd378b4b2a44ea7e0c766d186995965cb1d?branch=epel9-next
Log:
xine-lib-cleanup-sources.sh: Fix removing unwanted input plugin files.
EXTRA_DIST is not an actual use of the file.
---
diff --git a/xine-lib-cleanup-sources.sh b/xine-lib-cleanup-sources.sh
index 1cabc9c..1ccd7cc 100755
--- a/xine-lib-cleanup-sources.sh
+++ b/xine-lib-cleanup-sources.sh
@@ -48,7 +48,7 @@ for p in dvd vcd mms; do
echo "removing $p input plugin..."
# Remove sources
for sourcefile in `awk '/^xineplug_inp_'$p'_la_SOURCES/ { $1=""; $2=""; print $0}' src/input/Makefile.am`; do
- if [ "`grep -c $sourcefile src/input/Makefile.am`" -le 1 ]; then # if this file is only used for this plugin
+ if [ "`grep -v '^EXTRA_DIST = ' src/input/Makefile.am | grep -c $sourcefile`" -le 1 ]; then # if this file is only used for this plugin
rm -f src/input/$sourcefile
fi
done
reply other threads:[~2026-07-20 20:01 UTC|newest]
Thread overview: [no followups] expand[flat|nested] mbox.gz Atom feed
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=178457766732.1.14940691798773925213.rpms-xine-lib-23f22cd378b4@fedoraproject.org \
--to=kevin@tigcc.ticalc.org \
--cc=git-commits@fedoraproject.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox