Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 857c7e43 authored by Michal Marek's avatar Michal Marek
Browse files

rpm-pkg: Fix when current directory is a symlink



The better fix would be to stop using the parent directory (principle of
least surprise), but as long as we use it, use it consistently.

Signed-off-by: default avatarMichal Marek <mmarek@suse.cz>
parent e1287eb8
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -28,7 +28,7 @@ RPM := $(shell if [ -x "/usr/bin/rpmbuild" ]; then echo rpmbuild; \
# Remove hyphens since they have special meaning in RPM filenames
KERNELPATH := kernel-$(subst -,_,$(KERNELRELEASE))
MKSPEC     := $(srctree)/scripts/package/mkspec
PREV       := set -e; cd ..;
PREV       := set -e; cd -P ..;

# rpm-pkg
# ---------------------------------------------------------------------------