summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Schwinge <thomas@schwinge.name>2009-11-24 08:55:21 +0100
committerThomas Schwinge <thomas@schwinge.name>2009-11-24 08:55:21 +0100
commitae2464a2cfdcd7267997e6f399503b516a60fa95 (patch)
tree16df715543debf1d47c2d66cadca9a6187d6f1ad
parent9f1715af0cc21a658bad3ae53944651937ddf2fc (diff)
parentd7004cc2b51a394da631fc58b5194b48c945ee6c (diff)
Merge commit 'flubber/master'
-rw-r--r--hurd/porting/guidelines.mdwn4
1 files changed, 0 insertions, 4 deletions
diff --git a/hurd/porting/guidelines.mdwn b/hurd/porting/guidelines.mdwn
index 5fd66292..3fa802e8 100644
--- a/hurd/porting/guidelines.mdwn
+++ b/hurd/porting/guidelines.mdwn
@@ -149,10 +149,6 @@ by
error_t err = error_t(EINTR);
-## <a name="Filenames_ending_in_a_slash_"> Filenames ending in a slash \`/' </a>
-
-Those are evil if they don't exist and you want to name a directory this way. For example, `mkdir foobar/` will not work on GNU. This is POSIX compatible. POSIX says that the path of a directory may have slashes appended to it. But the directory does not exist yet, so the path does not refer to a directory, and hence trailing slashes are not guaranteed to work. Just drop the slashes, and you're fine.
-
## <a name="Missing_termio_h_tt_"> Missing `termio.h` </a>
Change it to use `termios.h` (check for it properly with autoconf `HAVE_TERMIOS_H` or the `__GLIBC__` macro)