f0c9dd0c81
* Mon Jun 01 2020 CKI@GitLab <cki-project@redhat.com> [5.7.0-1] - v5.7 rebase - Fix update_scripts.sh unselective pattern sub (David Howells) - Updated changelog for the release based on b0c3ba31be3e ("CKI@GitLab") - Drop the static path configuration for the Sphinx docs (Jeremy Cline) - Sign off generated configuration patches (Jeremy Cline) - Use __make macro instead of make (Tom Stellard) - redhat/configs: Enable CONFIG_SMC91X and disable CONFIG_SMC911X (Prarit Bhargava) [http://bugzilla.redhat.com/1722136] Resolves: rhbz# Signed-off-by: Justin M. Forbes <jforbes@fedoraproject.org>
13 lines
128 B
Bash
Executable File
13 lines
128 B
Bash
Executable File
#!/bin/sh
|
|
|
|
if [ -z $1 ]; then
|
|
exit 1
|
|
fi
|
|
|
|
TARGET=$1
|
|
|
|
for i in $RPM_SOURCE_DIR/*.$TARGET; do
|
|
NEW=${i%.$TARGET}
|
|
cp $i $NEW
|
|
done
|