d2f4df
# Building systemd rpms for local development using rpmbuild --build-in-place
ae4880
d2f4df
This approach is based on filbranden's [git-rpmbuild](https://github.com/filbranden/git-rpmbuild)
d2f4df
and his [talk during ASG2019](https://www.youtube.com/watch?v=fVM1kJrymRM).
ae4880
ae4880
```
ae4880
git clone https://github.com/systemd/systemd
ae4880
fedpkg clone systemd fedora-systemd
ae4880
cd systemd
f2f90a
rpmbuild -bb --build-in-place --noprep --define "_sourcedir $PWD/../fedora-systemd" --define "_rpmdir $PWD/rpms" --with upstream ../fedora-systemd/systemd.spec
ae4880
sudo dnf upgrade --setopt install_weak_deps=False rpms/*/*.rpm
ae4880
```
ae4880
ae4880
`--without lto` and `--without tests` may be useful to speed up the build.