diff options
author | Eric Andersen <andersen@codepoet.org> | 2002-06-24 18:05:13 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2002-06-24 18:05:13 +0000 |
commit | 6cb1c53fa0059ba6200e1e5ab0bc9a97cb25171e (patch) | |
tree | 1f69bea954d1ca9ead1a214976e99ebf06f1b058 | |
parent | 871fdfa915755d46393ca3ee38024b37cc431498 (diff) | |
download | uClibc-alpine-6cb1c53fa0059ba6200e1e5ab0bc9a97cb25171e.tar.bz2 uClibc-alpine-6cb1c53fa0059ba6200e1e5ab0bc9a97cb25171e.tar.xz |
Per "Marshall M. Midden" <m4@brecis.com>, remove double
define of _PATH_LOCALE.
-rw-r--r-- | include/paths.h | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/include/paths.h b/include/paths.h index 3cc9276a3..90edcf8fd 100644 --- a/include/paths.h +++ b/include/paths.h @@ -63,6 +63,10 @@ #define _PATH_VI "/usr/bin/vi" #define _PATH_WTMP "/var/log/wtmp" #define _PATH_LOCALE "/usr/lib/locale" +#define _PATH_LASTLOG "/var/log/lastlog" +#define _PATH_SHADOW "/etc/shadow" +#define _PATH_PASSWD "/etc/passwd" +#define _PATH_GROUP "/etc/group" /* Provide trailing slash, since mostly used for building pathnames. */ #define _PATH_DEV "/dev/" @@ -70,10 +74,5 @@ #define _PATH_VARDB "/var/lib/misc/" #define _PATH_VARRUN "/var/run/" #define _PATH_VARTMP "/var/tmp/" -#define _PATH_LASTLOG "/var/log/lastlog" -#define _PATH_LOCALE "/usr/lib/locale" -#define _PATH_SHADOW "/etc/shadow" -#define _PATH_PASSWD "/etc/passwd" -#define _PATH_GROUP "/etc/group" #endif /* !_PATHS_H_ */ |