From: Sadoon Albader Date: Sat, 19 Aug 2023 11:23:46 +0000 (+0300) Subject: fix $ char not being escaped causing issues X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=f413e89dd5cbb5db2559dc963124a3dfe0c69d03;p=dev-env-setup.git fix $ char not being escaped causing issues --- diff --git a/install-sbuild-apt-reqs b/install-sbuild-apt-reqs old mode 100644 new mode 100755 index 4f6ac1b..91d3ecc --- a/install-sbuild-apt-reqs +++ b/install-sbuild-apt-reqs @@ -23,30 +23,30 @@ tee /home/$SUDO_USER/.sbuildrc << EOF # PACKAGE BUILD RELATED (additionally produce _source.changes) ############################################################################## # -d -$distribution = '$RELEASE'; +\$distribution = '$RELEASE'; # -A -$build_arch_all = 1; +\$build_arch_all = 1; # -s -$build_source = 1; +\$build_source = 0; # --source-only-changes (applicable for dput. irrelevant for dgit push-source). -$source_only_changes = 1; +\$source_only_changes = 1; # -v -$verbose = 1; +\$verbose = 1; # parallel build -$ENV{'DEB_BUILD_OPTIONS'} = 'parallel=5'; +\$ENV{'DEB_BUILD_OPTIONS'} = 'parallel=1'; ############################################################################## # POST-BUILD RELATED (turn off functionality by setting variables to 0) ############################################################################## # We are not running lintian, piuparts, and autopkgtest for now to speed # up builds. Will be enabled in the future when necessary. -$run_lintian = 0; -$lintian_opts = ['-i', '-I']; -$run_piuparts = 0; -$piuparts_opts = ['--schroot', '%r-%a-sbuild', '--no-eatmydata']; -$run_autopkgtest = 0; -$autopkgtest_root_args = ''; -$autopkgtest_opts = [ '--', 'schroot', '%r-%a-sbuild' ]; +\$run_lintian = 0; +\$lintian_opts = ['-i', '-I']; +\$run_piuparts = 0; +\$piuparts_opts = ['--schroot', '%r-%a-sbuild', '--no-eatmydata']; +\$run_autopkgtest = 0; +\$autopkgtest_root_args = ''; +\$autopkgtest_opts = [ '--', 'schroot', '%r-%a-sbuild' ]; ############################################################################## # PERL MAGIC