#!/usr/bin/make -f
# -*- makefile -*-

# Uncomment this to turn on verbose mode.
#export DH_VERBOSE=1

%:
	dh $@

# Apply https://cgit.kde.org/oxygen.git/commit/cursors/src?id=5bf9dfe906b50f2455210a29a00ec5494d8e26b7
#   ("Correcting symlinks between col- and row-resize and split_v and _h cursors")
# manually
# It can not be applied with a normal patch, cause dpkg-source does not support editing symlinks
# Closes: #848144
override_dh_auto_configure:
	ln -sf split_h symlinks/col-resize
	ln -sf split_v symlinks/row-resize
	dh_auto_configure
