From 8bf5ef4cb0b33a5b7d1f2beb2b2931c331a38408 Mon Sep 17 00:00:00 2001 From: "Joshua M. Boniface" Date: Sat, 3 Dec 2022 02:06:30 -0500 Subject: [PATCH] Fix another error --- content/debian-packaging-101.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/debian-packaging-101.md b/content/debian-packaging-101.md index ef4010e..dcf00e0 100644 --- a/content/debian-packaging-101.md +++ b/content/debian-packaging-101.md @@ -576,6 +576,6 @@ This will build the package for you. You should get 5 files out of the build, on You can then install your `.deb` or add it to a repository manager like `reprepro`. -If something went wrong, that's OK! It's common to have errors the first time you try to build a package. Either errors in `rules`, parts that don't build write, typos, etc. Luckily the `dpkg-buildpackage` command is very verbose and shows, in real-time, all the build steps that are occurring. Pay close attention to what failed and tweak your scripts or configuration to match, and try again. Once you're at this stage, and assuming that your `dh_auto_clean` is actually cleaning everything up properly, it's safe to re-run the build as many times as needed to get it working - and if it isn't, the command will complain and tell you about it, so you're getting plenty of feedback. +If something went wrong, that's OK! It's common to have errors the first time you try to build a package. Either errors in `rules`, parts that don't build right, typos, etc. Luckily the `dpkg-buildpackage` command is very verbose and shows, in real-time, all the build steps that are occurring. Pay close attention to what failed and tweak your scripts or configuration to match, and try again. Once you're at this stage, and assuming that your `dh_auto_clean` is actually cleaning everything up properly, it's safe to re-run the build as many times as needed to get it working - and if it isn't, the command will complain and tell you about it, so you're getting plenty of feedback to adjust your `rules` to get it to work. Happy building!