You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If the debian package has been built already and is built again, the entries in the conffiles file are written to it twice. This leads to the following lintian error:
E: ces-commons: duplicate-conffile FILENAME
N:
N: The file is listed more than once in your debian/conffiles file.
N: Usually, this is because debhelper (dh_installdeb, compat level 3 or
N: higher) will add any files in your package located in /etc automatically
N: to the list of conffiles, so if you do that manually too, you'll get
N: duplicates.
N:
N: Severity: important, Certainty: certain
N:
N: Check: conffiles, Type: binary
This most likely is caused by the $(CONFFILES_FILE_TMP) file not being removed after usage.
The text was updated successfully, but these errors were encountered:
Remove temporary conffiles file after usage
$(CONFFILES_FILE_TMP) is removed after usage
so it is not filled with duplicates if
the deb package is built again.
This resolves#20
If the debian package has been built already and is built again, the entries in the
conffiles
file are written to it twice. This leads to the following lintian error:This most likely is caused by the
$(CONFFILES_FILE_TMP)
file not being removed after usage.The text was updated successfully, but these errors were encountered: