Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 1 addition & 8 deletions build-scripts/package
Original file line number Diff line number Diff line change
Expand Up @@ -219,14 +219,7 @@ rpm | lpp)

# Link all packaging files (except spec files) to SOURCES directory
log_debug "Linking packaging files to SOURCES directory"
# shellcheck disable=SC2044
# TODO: CFE-4584
for i in $(find "$BASEDIR/buildscripts/packaging/$PKG" ! -name "*.spec"); do
(
cd "$BASEDIR/$PKG/SOURCES"
ln -sf "$i" .
) || false
done
find "$BASEDIR/buildscripts/packaging/$PKG" ! -name "*.spec" -exec ln -sf {} "$BASEDIR/$PKG/SOURCES" \;

# Build the RPM package using rpmbuild
# eval is needed to preserve spaces in arguments within quotes
Expand Down