From 6e11289cc2478c2d7414399cb8a3b9ed1ce7a6c9 Mon Sep 17 00:00:00 2001 From: Frank Gevaerts Date: Tue, 17 Jan 2012 18:44:29 +0100 Subject: Set HOME_DIR to "/". Should fix FS#12500. The reasons for not using / don't seem to be valid (It can lead to //, true, but not on any system where // is actually special, and create_*_filename() handles / fine albeit not perfectly (more //)). Handling /./ is desirable, but we can't afford to leave all automatic filename generation broken indefinitely while people discuss possible approaches. Change-Id: I6718ea28d7c91e19f7da89f76c8cefd92e12fe5e --- firmware/export/rbpaths.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'firmware/export/rbpaths.h') diff --git a/firmware/export/rbpaths.h b/firmware/export/rbpaths.h index 85e149e737..c60ebdf2af 100644 --- a/firmware/export/rbpaths.h +++ b/firmware/export/rbpaths.h @@ -49,7 +49,7 @@ #ifdef SAMSUNG_YPR0 #define HOME_DIR "/mnt/media0" #else -#define HOME_DIR "/." /* dot to avoid "//XX", /./X is valid */ +#define HOME_DIR "/" #endif /* make sure both are the same for native builds */ -- cgit v1.2.3