From 1e8d358cbfddfb32edd0fc7ecd3801180e0fb5e8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luis=20Guzm=C3=A1n?= Date: Fri, 18 Oct 2024 02:42:59 +0000 Subject: [PATCH] config: add note when dpkg-vendor is present in debian/rules --- helpers/config | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/helpers/config b/helpers/config index 27a84ab..8b8e8ae 100755 --- a/helpers/config +++ b/helpers/config @@ -1,5 +1,6 @@ #!/bin/bash # +# Copyright (C) 2024 Luis Guzmán # Copyright (C) 2008-2020 Ruben Rodriguez # Copyright (C) 2014 Santiago Rodriguez # Copyright (C) 2019 David Trudgian @@ -207,6 +208,10 @@ dpkg-source -b -I.falsefileextension99 $PACKAGE-$FULLVERSION rm -rf ${LOCAL_APT} echo "Trisquel source package built!" +if grep -q "dpkg-vendor" $PACKAGE-$FULLVERSION/debian/rules; then + printf "> Note: 'dpkg-vendor' is present on debian/rules " + printf "a distro related behavior might be in place.\n" +fi } sedhelper2(){