blob: f98f487e3fcc1042f2ed9685957f18ddd486ae21 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
diff -urN netbsd-sh/cd.c ash-0.3.7.orig/cd.c
--- netbsd-sh/cd.c Fri Jul 9 13:02:05 1999
+++ ash-0.3.7.orig/cd.c Mon Apr 23 22:16:46 2001
@@ -319,7 +319,7 @@
* c implementation of getcwd, that does not open a pipe to
* /bin/pwd.
*/
-#if defined(__NetBSD__) || defined(__SVR4)
+#if defined(__NetBSD__) || defined(__SVR4) || defined(__GLIBC__)
if (getcwd(buf, sizeof(buf)) == NULL) {
char *pwd = getenv("PWD");
|