]> granicus.if.org Git - sudo/commitdiff
builtin -> built-in; Jason McIntyre
authorTodd C. Miller <Todd.Miller@courtesan.com>
Sun, 13 Apr 2003 19:48:15 +0000 (19:48 +0000)
committerTodd C. Miller <Todd.Miller@courtesan.com>
Sun, 13 Apr 2003 19:48:15 +0000 (19:48 +0000)
TROUBLESHOOTING
config.h.in
configure
configure.in

index 6e54d785a23215894aa60d2595faabf20f3d319f..44ac3e4f0874fe1720641a1a159afb7e85e0a051 100644 (file)
@@ -149,9 +149,9 @@ Q) When I run "visudo" it says "sudoers file busy, try again later."
 A) Someone else is currently editing the sudoers file with visudo.
 
 Q) When I try to use "cd" with sudo it says "cd: command not found".
-A) "cd" is a shell builtin, you can't run it as a command since
-   a child process (sudo) cannot affect the current working directory
-   of the parent (your shell).
+A) "cd" is a shell built-in command, you can't run it as a command
+   since a child process (sudo) cannot affect the current working
+   directory of the parent (your shell).
 
 Q) When I try to use "cd" with sudo the command completes without
    errors but nothing happens.
index de4468905701f8a874a488bff9d218abedc44fa5..41735cf5f33b1d434ac27c5cac3f7c6e7a81e874 100644 (file)
 /* The user sudo should run commands as by default. */
 #undef RUNAS_DEFAULT
 
-/* Define to override the user's path with a builtin one. */
+/* Define to override the user's path with a built-in one. */
 #undef SECURE_PATH
 
 /* Define to send mail when the user is not allowed to run a command. */
index dba1015ae6a379171498d426d057d800ae28e0dd..7807cb7f5fe41a9d75214a4bf0cce576ce490621 100755 (executable)
--- a/configure
+++ b/configure
@@ -926,7 +926,7 @@ Optional Packages:
   --with-csops-insults    include CSOps insults
   --with-hal-insults      include 2001-like insults
   --with-goons-insults    include the insults from the "Goon Show"
-  --with-secure-path      override the user's path with a builtin one
+  --with-secure-path      override the user's path with a built-in one
   --without-interfaces    don't try to read the ip addr of ether interfaces
   --with-stow             properly handle GNU stow packaging
 
index 6521bfbd0a5fbd5c058d3694f1c9629026260b82..6f6893093a1edaca4b16faf6c0807e321ac2945d 100644 (file)
@@ -911,9 +911,9 @@ if test "$insults" = "on"; then
 fi
 
 AC_MSG_CHECKING(whether to override the user's path)
-AC_ARG_WITH(secure-path, [  --with-secure-path      override the user's path with a builtin one],
+AC_ARG_WITH(secure-path, [  --with-secure-path      override the user's path with a built-in one],
 [case $with_secure_path in  
-    yes)       AC_DEFINE_UNQUOTED(SECURE_PATH, "/bin:/usr/ucb:/usr/bin:/usr/sbin:/sbin:/usr/etc:/etc", [Define to override the user's path with a builtin one.])
+    yes)       AC_DEFINE_UNQUOTED(SECURE_PATH, "/bin:/usr/ucb:/usr/bin:/usr/sbin:/sbin:/usr/etc:/etc", [Define to override the user's path with a built-in one.])
                AC_MSG_RESULT([:/usr/ucb:/usr/bin:/usr/sbin:/sbin:/usr/etc:/etc])
                ;;
     no)                AC_MSG_RESULT(no)