search for: cvsrepositori

Displaying 6 results from an estimated 6 matches for "cvsrepositori".

Did you mean: cvsrepository
1999 Oct 15
0
Can't delete read-only files on Linux
Hi, I am mounting an NT share from a linux(RH6.0) box using smbmount (samba v2.05a). smbmount //machine/cvsrepository /home/user/cvsrepository -U user I am trying to delete a read-only file in the mounted directory. The directory has proper write permissions: cd /home/user/cvsrepository mkdir blah cd blah chmod +w . touch test chmod -w test rm test rm: remove write-protected file `test'? y
2009 Mar 12
4
Extremely custom mailbox locations
I'm in the position where I'd like to offer IMAP access to a collection of email accounts which are stored in a very odd manner. Files are stored as: /blah/$dd-$mm-$yy/$domain/1234/1234 For example: /reject/12-3-2009/cvsrepository.org/35199/35199639 There is a single file for each mail, which I guess technically probably counts as an mbox folder, but only just. I
2006 Jun 05
0
xen-tools v1.5
I have no wish to spam this list, but I''ve seen several people mention they have used my "xen-tools" scripts to create Debian Xen instances. Recently I released version 1.5, both as a tarball [1], and also as a package in Debian''s unstable distribution.[2] This now allows the creation of CentOS4 images via the use of the ''rpmstrap'' command.
2003 May 23
0
[LLVMdev] lli should not put .bc in argv[0]
When you run a program foo linked with gccld (i.e., by running the script "foo" it outputs which runs lli) it passes foo.bc instead of foo as the argv[0] for the program. This is surprising to the user, who is expecting that a program started by running "./foo" will call itself "./foo", not "./foo.bc". Fixed by removing ".bc" from the end of
2003 May 23
0
[LLVMdev] clarify comment in BugDriver.cpp
Clarify BugDriver.cpp:BugDriver::ParseInputFile()'s return values in its explanatory comment. Committed as an obvious fix. -- gaeke at uiuc.edu Index: BugDriver.cpp =================================================================== RCS file: /home/vadve/vadve/Research/DynOpt/CVSRepository/llvm/tools/bugpoint/BugDriver.cpp,v retrieving revision 1.6 diff -u -a -d -p -r1.6 BugDriver.cpp ---
2003 May 22
1
[LLVMdev] allow gcc .... /full/path/to/libfoo.a
gccld would barf if you tried to specify the full pathname of an archive on the command line to gcc, (e.g., instead of gcc ... -L/full/path/to -lFOO you say gcc ... /full/path/to/libFOO.a) which many GNU Makefiles try to do. This patch fixes that. Ok to commit? -- gaeke at uiuc.edu gccld.cpp: Fix typo in header. Add IsArchive static method. Roll LoadLibraryFromDirectory() into