Skip to content
Snippets Groups Projects
Commit 1f70b58b authored by Ryan Gonzalez's avatar Ryan Gonzalez
Browse files

Remove '-execdir +' usage for compatibility with rust-findutils

https://phabricator.apertis.org/T8219



Signed-off-by: default avatarRyan Gonzalez <ryan.gonzalez@collabora.com>
parent ae334b69
No related branches found
Tags debian/241-7_deb10u6
No related merge requests found
...@@ -2,6 +2,7 @@ systemd (247.3-6+apertis2) apertis; urgency=medium ...@@ -2,6 +2,7 @@ systemd (247.3-6+apertis2) apertis; urgency=medium
* d/p/basic-linux-Sync-if_arp.h-with-Linux-5.14.patch: * d/p/basic-linux-Sync-if_arp.h-with-Linux-5.14.patch:
Fix compilation on kernel 5.14+ Fix compilation on kernel 5.14+
* Remove '-execdir +' usage for compatibility with rust-findutils
-- Ryan Gonzalez <ryan.gonzalez@collabora.com> Thu, 13 Jan 2022 15:27:00 -0600 -- Ryan Gonzalez <ryan.gonzalez@collabora.com> Thu, 13 Jan 2022 15:27:00 -0600
......
...@@ -22,9 +22,9 @@ cp -p /etc/udev/udev.conf "$DESTDIR/etc/udev/" ...@@ -22,9 +22,9 @@ cp -p /etc/udev/udev.conf "$DESTDIR/etc/udev/"
# copy .link files containing interface naming definitions # copy .link files containing interface naming definitions
mkdir -p "$DESTDIR/lib/systemd/network/" mkdir -p "$DESTDIR/lib/systemd/network/"
find -L /lib/systemd/network -name '*.link' -execdir cp -pt "$DESTDIR/lib/systemd/network/" '{}' + find -L /lib/systemd/network -name '*.link' -print0 | xargs -0r cp -pt "$DESTDIR/lib/systemd/network/"
if [ -d /etc/systemd/network ]; then if [ -d /etc/systemd/network ]; then
find -L /etc/systemd/network -name '*.link' -execdir cp -pt "$DESTDIR/lib/systemd/network/" '{}' + find -L /etc/systemd/network -name '*.link' -print0 | xargs -0r cp -pt "$DESTDIR/lib/systemd/network/"
fi fi
mkdir -p "$DESTDIR/lib/udev/rules.d/" mkdir -p "$DESTDIR/lib/udev/rules.d/"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment