Return-Path: X-Original-To: apmail-subversion-dev-archive@minotaur.apache.org Delivered-To: apmail-subversion-dev-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id DD5359557 for ; Mon, 6 Feb 2012 10:23:57 +0000 (UTC) Received: (qmail 66686 invoked by uid 500); 6 Feb 2012 10:23:56 -0000 Delivered-To: apmail-subversion-dev-archive@subversion.apache.org Received: (qmail 66297 invoked by uid 500); 6 Feb 2012 10:23:46 -0000 Mailing-List: contact dev-help@subversion.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Delivered-To: mailing list dev@subversion.apache.org Received: (qmail 66271 invoked by uid 99); 6 Feb 2012 10:23:40 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 06 Feb 2012 10:23:40 +0000 X-ASF-Spam-Status: No, hits=-0.7 required=5.0 tests=RCVD_IN_DNSWL_LOW,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: local policy) Received: from [192.109.42.8] (HELO einhorn.in-berlin.de) (192.109.42.8) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 06 Feb 2012 10:23:31 +0000 X-Envelope-From: stsp@stsp.name Received: from ted.stsp.name (ted.stsp.name [217.197.84.34]) by einhorn.in-berlin.de (8.13.6/8.13.6/Debian-1) with ESMTP id q16AN95I031172 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT); Mon, 6 Feb 2012 11:23:10 +0100 Received: from ted.stsp.name (stsp@localhost [127.0.0.1]) by ted.stsp.name (8.14.5/8.14.3) with ESMTP id q16AN9ro031205; Mon, 6 Feb 2012 11:23:09 +0100 (CET) Received: (from stsp@localhost) by ted.stsp.name (8.14.5/8.14.3/Submit) id q16AN9xd011403; Mon, 6 Feb 2012 11:23:09 +0100 (CET) Date: Mon, 6 Feb 2012 11:23:08 +0100 From: Stefan Sperling To: Michael Beyer Cc: dev@subversion.apache.org Subject: Re: Disable symlink creation Message-ID: <20120206102308.GA31223@ted.stsp.name> Mail-Followup-To: Michael Beyer , dev@subversion.apache.org References: <20120206080011.78510@gmx.net> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20120206080011.78510@gmx.net> User-Agent: Mutt/1.5.21 (2010-09-15) X-Scanned-By: MIMEDefang_at_IN-Berlin_e.V. on 192.109.42.8 X-Virus-Checked: Checked by ClamAV on apache.org On Mon, Feb 06, 2012 at 09:00:11AM +0100, Michael Beyer wrote: > Dear Subversion-Developer-Team, > > I'm using subversion on a linux platform and I want to checkout symbolic links on a FAT32 partition (USB-Stick). I know, FAT32 doesn't support symlinks. But instead of an error message while running svn co, it would be nice to have an option to disable symbolic link creation. I mean, I want the linux svn client to ignore the "svn:special" property, similar to an windows svn client. > > I hope, you can help me. I spent several hours to find a solution. This is an open feature request: http://subversion.tigris.org/issues/show_bug.cgi?id=2472 You can add yourself to the Cc list of that issue to be informed about progress. I agree such a feature would be useful. I doubt anyone is actively working on this, though. A workaround you could try (haven't tested this myself) is to compile a subversion client without HAVE_SYMLINK symlink defined in subversion/svn_private_config.h. Run configure as usual, and then remove the line that says "#define HAVE_SYMLINK 1" before running make. This should give you a client that doesn't support symlinks at all and you can use this client for working copies on the FAT32 partition. Maybe that will help.