--- aegis-4.24/script/aeintegratq.in 2008-03-14 07:19:27.000000000 +0100 +++ aegis-4.24/script/aeintegratq.in 2014-01-26 16:08:22.000000000 +0100 @@ -49,13 +49,14 @@ # # @configure_input@ # +use File::Temp qw/ tempdir /; # Grab useful locations from configure $BinDir = "@bindir@"; # configure does not expand @comdir@ directly so use sharedstatedir $ComDir = "@sharedstatedir@"; # Configure additions? -$TmpDir = "/var/tmp"; +$TmpDir = tempdir(); # base mail program that takes all info (to: subj: etc) on stdin $SendMail = "/usr/lib/sendmail"; # Define the preferred integration host en' name='id' value='8ecc74119a289a7f13e20956930b355459f783e4'/>
aboutsummaryrefslogtreecommitdiff | Pierre Langlois | |
2022-01-14 | gremlin: Adjust tests for i686 and beyond....Fixes <https://issues.guix.gnu.org/52752>. Reported by Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>. * tests/gremlin.scm ("file-needed/recursive"): Augment the list of vDSO names. | Ludovic Courtès |
2022-01-08 | tests: Fix file-needed/recursive on powerpc64le-linux....Fixes: <https://issues.guix.gnu.org/52940>. * tests/gremlin.scm (file-needed/recursive): Consider two entries to be equivalent not when they are the same string, but rather when they refer to the same file. [ground-truth]: In addition to strings that begin with "linux-vdso.so", remove strings that begin with "linux-vdso64.so". | Chris Marusich |
2021-06-23 | tests: gremlin: Skip file-needed/recursive if DT_NEEDED is empty....* tests/gremlin.scm (file-needed/recursive): Skip the test when (file-runpath %guile-executable) evaluates to the empty list. This causes the test to be correctly skipped in the case where Guix has been built using a foreign distro's toolchain and libraries. | Chris Marusich |
2021-04-22 | gremlin: 'elf-dynamic-info' returns a file name rathern than a dynamic entry....* guix/build/gremlin.scm (elf-dynamic-info): Return the dynamic entry value, not the dynamic entry. * tests/gremlin.scm ("elf-dynamic-info-soname"): New test. Signed-off-by: Ludovic Courtès <ludo@gnu.org> | Dion Mendel |
2020-12-01 | gremlin: Add 'file-needed/recursive'....* guix/build/gremlin.scm (file-needed/recursive): New procedure. * tests/gremlin.scm ("file-needed/recursive"): New test. | Ludovic Courtès |
2020-09-19 | gremlin: Add 'set-file-runpath', 'file-runpath', and 'file-needed'....* guix/build/gremlin.scm (file-dynamic-info, file-runpath, file-needed): New procedures. (&missing-runpath-error, &runpath-too-long-error): New condition types. (set-file-runpath): New procedure. * tests/gremlin.scm ("set-file-runpath + file-runpath"): New test. | Ludovic Courtès |
2019-05-18 | gremlin: Adjust tests for foreign distros....Fixes <https://bugs.gnu.org/35775>. * tests/gremlin.scm ("elf-dynamic-info-needed, executable"): Expect only libguile and libc among NEEDED. ("strip-runpath"): Pass '--enable-new-dtags' to get RUNPATH, not RPATH. | Ting-Wei Lan |