Brian Cully schreef op zo 24-04-2022 om 19:27 [-0400]: > --8<---------------cut here---------------start------------->8--- > (file-append #~#$gcc:lib “/lib”) > --8<---------------cut here---------------end--------------->8--- > > The “correct” way is this: > --8<---------------cut here---------------start------------->8--- > (gexp-input (file-append gcc "/lib") "lib") > --8<---------------cut here---------------end--------------->8--- FWIW, I was actually thinking of (file-append (gexp-input gcc "lib") "/lib") (First select the output with 'gexp-input', then append a suffix.) Greetings, Maxime.