Home
last modified time | relevance | path

Searched refs:rootdir (Results 1 – 25 of 28) sorted by relevance

12

/openbsd/src/gnu/usr.bin/perl/dist/PathTools/t/
Dcrossplatform.t34 my $rootdir = File::Spec->rootdir;
35 $vms_real_root = 1 if ($rootdir eq '/');
84 $base = $module->catdir($module->rootdir, 'foo');
101 $file = $module->catpath($v, $module->catdir($module->rootdir, 'foo', 'bar'), 'file');
102 $base = $module->catpath($v, $module->catdir($module->rootdir, 'foo'), '');
120 $base = $module->catpath($other_v, $module->catdir($module->rootdir, 'foo'), '');
126 $base = $module->catpath('', $module->catdir($module->rootdir, 'foo'), '');
132 $file = $module->catpath('', $module->catdir($module->rootdir, 'foo', 'bar'), 'file');
133 $base = $module->catpath($v, $module->catdir($module->rootdir, 'foo'), '');
147 $base = $module->catpath($other_v, $module->catdir($module->rootdir, 'foo'), '');
[all …]
DFunctions.t18 is(rootdir(), File::Spec->rootdir());
Dcwd.t248 my $root = Cwd::abs_path(File::Spec->rootdir); # Add drive letter?
/openbsd/src/gnu/usr.bin/binutils/opcodes/
Dcgen.sh63 rootdir=${srcdir}/..
114 ${rootdir}/move-if-change tmp-desc.h ${srcdir}/${prefix}-desc.h
118 ${rootdir}/move-if-change tmp-desc.c ${srcdir}/${prefix}-desc.c
121 ${rootdir}/move-if-change tmp-opc.h ${srcdir}/${prefix}-opc.h
125 ${rootdir}/move-if-change tmp-opc.c ${srcdir}/${prefix}-opc.c
131 ${rootdir}/move-if-change tmp-opinst.c ${srcdir}/${prefix}-opinst.c
138 ${rootdir}/move-if-change tmp-ibld.c ${srcdir}/${prefix}-ibld.c
143 ${rootdir}/move-if-change tmp-asm.c ${srcdir}/${prefix}-asm.c
148 ${rootdir}/move-if-change tmp-dis.c ${srcdir}/${prefix}-dis.c
/openbsd/src/gnu/usr.bin/binutils-2.17/opcodes/
Dcgen.sh63 rootdir=${srcdir}/..
114 ${rootdir}/move-if-change tmp-desc.h ${srcdir}/${prefix}-desc.h
118 ${rootdir}/move-if-change tmp-desc.c ${srcdir}/${prefix}-desc.c
121 ${rootdir}/move-if-change tmp-opc.h ${srcdir}/${prefix}-opc.h
125 ${rootdir}/move-if-change tmp-opc.c ${srcdir}/${prefix}-opc.c
131 ${rootdir}/move-if-change tmp-opinst.c ${srcdir}/${prefix}-opinst.c
138 ${rootdir}/move-if-change tmp-ibld.c ${srcdir}/${prefix}-ibld.c
143 ${rootdir}/move-if-change tmp-asm.c ${srcdir}/${prefix}-asm.c
148 ${rootdir}/move-if-change tmp-dis.c ${srcdir}/${prefix}-dis.c
/openbsd/src/gnu/usr.bin/perl/
Dmkppport14 my $rootdir = dirname($0);
16 unshift @INC, File::Spec->catdir($rootdir, qw(cpan ExtUtils-MakeMaker t lib));
22 list => File::Spec->catfile($rootdir, 'mkppport.lst'),
31 my $absroot = File::Spec->rel2abs($rootdir);
62 chdir File::Spec->catdir($rootdir, 'dist', 'Devel-PPPort');
/openbsd/src/gnu/usr.bin/perl/cpan/podlators/t/style/
Dstrict.t74 opendir(my $rootdir, File::Spec->curdir)
76 my @files = File::Spec->no_upwards(readdir($rootdir));
77 closedir($rootdir) or die "$0: cannot close current directory: $!\n";
/openbsd/src/usr.sbin/smtpd/
Dqueue_fs.c69 char rootdir[PATH_MAX]; in queue_fs_message_create() local
79 fsqueue_message_path(*msgid, rootdir, sizeof(rootdir)); in queue_fs_message_create()
80 if (stat(rootdir, &sb) != -1) in queue_fs_message_create()
89 fsqueue_message_incoming_path(*msgid, rootdir, sizeof(rootdir)); in queue_fs_message_create()
90 if (mkdir(rootdir, 0700) == -1) { in queue_fs_message_create()
/openbsd/src/gnu/usr.bin/perl/dist/PathTools/lib/File/Spec/
DUnix.pm132 sub rootdir { '/' } subroutine
421 $base_directories = $self->rootdir;
434 if ($base_directories eq $self->rootdir) {
435 return $self->curdir if $path_directories eq $self->rootdir;
DMac.pm205 $first_arg = $self->rootdir;
345 sub rootdir { '' } subroutine
DFunctions.pm46 rootdir => [],
DWin32.pm45 sub rootdir { '\\' } subroutine
DVMS.pm249 sub rootdir { subroutine
/openbsd/src/gnu/llvm/compiler-rt/utils/
Dgenerate_netbsd_ioctls.awk47 rootdir = "/usr/include/"
49 rootdir = ENVIRON["ROOTDIR"]
54 cmd = "find " rootdir " -type f -name '*.h'"
65 fname[ioctl_table_max] = substr(FILENAME, length(rootdir) + 1)
/openbsd/src/gnu/usr.bin/cvs/src/
Droot.c139 Create_Root (dir, rootdir) in Create_Root() argument
141 char *rootdir;
151 if (rootdir != NULL)
162 if (fprintf (fout, "%s\n", rootdir) < 0)
Dcvs.h474 void Create_Root PROTO((char *dir, char *rootdir));
/openbsd/src/gnu/llvm/clang/docs/tools/
Dgenerate_formatted_state.py32 rootdir = TOP_DIR variable
91 for root, subdirs, files in os.walk(rootdir):
/openbsd/src/libexec/ftpd/
Dftpd.c866 char *motd, *dir, rootdir[PATH_MAX]; in pass() local
1004 snprintf(rootdir, sizeof(rootdir), "%s/%s", in pass()
1006 if (stat(rootdir, &ts) == -1) { in pass()
1007 snprintf(rootdir, sizeof(rootdir), "%s/%s", in pass()
1011 strlcpy(rootdir, pw->pw_dir, sizeof(rootdir)); in pass()
1019 if (chroot(rootdir) == -1 || chdir("/") == -1) { in pass()
1029 if (chroot(rootdir) == -1 || chdir("/") == -1) { in pass()
/openbsd/src/gnu/usr.bin/perl/dist/PathTools/
DCwd.pm483 return $dir eq File::Spec->rootdir
DChanges546 sensitive to the rootdir() change from version 3.07. [Steve Hay]
553 - File::Spec->rootdir() was returning / on Win32. Now it returns \ .
925 catdir(rootdir(), 'foo'), '') to work portably across platforms.
/openbsd/src/gnu/usr.bin/perl/cpan/CPAN/lib/
DCPAN.pm313 File::Spec->rootdir();
489 my $root = File::Spec->rootdir();
/openbsd/src/usr.bin/file/magdir/
Dfilesystems804 >>>>>>44 ulelong >2 \b, rootdir cluster %u
805 #>>>>>>44 ulelong =2 \b, rootdir cluster %u
806 #>>>>>>44 ulelong =1 \b, rootdir cluster %u
/openbsd/src/gnu/llvm/lld/MachO/
DOptions.td221 MetaVarName<"<rootdir>">,
222 HelpText<"Prepend <rootdir> to all library and framework search paths">,
/openbsd/src/gnu/usr.bin/perl/pod/
Dperl588delta.pod533 C<< File::Spec->rootdir() >> now returns C<\> on Win32, instead of C</>
/openbsd/src/gnu/usr.bin/gcc/gcc/doc/
Dinstall.texi1391 make DESTDIR=@var{path-to-rootdir} install
1394 @noindent where @var{path-to-rootdir} is the absolute path of
1401 e.g.@: @samp{DESTDIR=@var{rootdir}}, then the directory
1402 @file{@var{rootdir}/@var{exec-prefix}/@var{target-alias}/bin} will

12