--- unzip60/man/unzip.1 2011-01-11 11:59:59.000000000 +0000 +++ unzip60/man/unzip_new 2011-02-05 18:45:55.000000000 +0000 @@ -424,7 +424,7 @@ .\" Amiga support possible eventually, but not yet [MS-DOS, OS/2, NT] restore the volume label if the extraction medium is removable (e.g., a diskette). Doubling the option (\fB\-$$\fP) allows fixed -media (hard disks) to be labelled as well. By default, volume labels are +media (hard disks) to be labeled as well. By default, volume labels are ignored. .IP \fB\-/\fP\ \fIextensions\fP [Acorn only] overrides the extension list supplied by Unzip$Ext environment den' name='id' value='5ab65d77affdb95b13832f94287fd4d216826a17'/> Wojtek's customized Guix
aboutsummaryrefslogtreecommitdiff
path: root/tests/modules.scm
AgeCommit message (Expand)Author
2024-08-31build-systems: gnu: Export %default-gnu-imported-modules and %default-gnu-mod......Until now users would have to cargo cult or inspect the private %default-modules variable of (guix build-systems gnu) to discover which modules to include when extending the used modules via the #:modules argument. The renaming was automated via the command: $ git grep -l %gnu-build-system-modules | xargs sed 's/%gnu-build-system-modules/%default-gnu-imported-modules/' -i * guix/build-system/gnu.scm (%gnu-build-system-modules): Rename to... (%default-gnu-imported-modules): ... this. (%default-modules): Rename to... (%default-gnu-modules): ... this. Export. (dist-package, gnu-build, gnu-cross-build): Adjust accordingly. Change-Id: Idef307fff13cb76f3182d782b26e1cd3a5c757ee Maxim Cournoyer
2024-07-18modules: ‘file-name->module-name’ strips leading “./”....Fixes <https://issues.guix.gnu.org/71979>. * guix/modules.scm (file-name->module-name): Strip leading “.” component from FILE. * tests/modules.scm ("file-name->module-name") ("file-name->module-name, leading dot"): New tests. Reported-by: Tomas Volf <~@wolfsden.cz> Change-Id: I3d1b9f3f21448050cac4f3b1aed5f8f03758d4c9 Ludovic Courtès