Fix incorrect filepath (Closes: #985835)

This commit is contained in:
Boyuan Yang
2021-04-07 12:12:13 -04:00
parent f66dbb457b
commit 3f13d15dfd

View File

@@ -482,9 +482,11 @@ override_dh_auto_configure:
override_dh_auto_build:
override_dh_auto_install:
mkdir -p debian/\$(PACKAGE)
# Copy the packages's files.
find . -maxdepth 1 -mindepth 1 -not -name debian -print0 | \\
xargs -0 -r -i cp -a {} debian/\$(PACKAGE)
sed -e s#'./'##g | \\
xargs -0 -r -i cp -a ./{} debian/\$(PACKAGE)/{}
#
# If you need to move files around in debian/\$(PACKAGE) or do some
# binary patching, do it here