Remove unnecessary check for multiple running genkernels.
authorEric Edgar <rocket@gentoo.org>
Mon, 1 Aug 2005 13:30:28 +0000 (13:30 +0000)
committerEric Edgar <rocket@gentoo.org>
Mon, 1 Aug 2005 13:30:28 +0000 (13:30 +0000)
git-svn-id: svn+ssh://svn.gentoo.org/var/svnroot/genkernel/trunk@297 67a159dc-881f-0410-a524-ba9dfbe2cb84

genkernel

index 5687929aafd10c983682fb85bfff81039f24e013..10de369f8ed043cf4589b5299c9bc8f4100b291c 100755 (executable)
--- a/genkernel
+++ b/genkernel
@@ -167,27 +167,27 @@ else
        fi
 fi
 
-# Check whether another Genkernel is running
-GENPIDS="`ps -C genkernel --no-headers -o pid | wc -l`"
-if [ "${GENPIDS}" -gt '3' ]
-then
-       [ "${GENPIDS}" -gt '4' ] && EX='s'
-       print_warning 1 "${BOLD}WARNING${NORMAL}: Another Genkernel instance is running under"
-       print_warning 1 "         process ID${EX} " 0
-       GENPIDS=`ps -C genkernel --no-headers -o pid`
-       echo -n "${GENPIDS}" | sed -e "s/$$//; s/ /, /g"
-       echo 'halting...'
-       echo
-       print_warning 1 'Running multiple genkernels on the same source tree will cause data loss!'
-       print_info 1 "Press ^C to halt; ^D to continue [ ${BOLD}if${NORMAL} you know what you're doing! ]"
-       echo
-       CTEMP="${TEMP}"
-       TEMP=${TMPDIR-/tmp}
-       TEMP=${TEMP}/genkernel.$RANDOM.$RANDOM.$RANDOM.$$
-       print_info 1 'thread: Running multiple genkernels may cause problems!'
-       print_info 1 "thread: Temporary files reallocated to ${TEMP}..."
-       echo
-fi
+## Check whether another Genkernel is running
+#GENPIDS="`ps -C genkernel --no-headers -o pid | wc -l`"
+#if [ "${GENPIDS}" -gt '3' ]
+#then
+#      [ "${GENPIDS}" -gt '4' ] && EX='s'
+#      print_warning 1 "${BOLD}WARNING${NORMAL}: Another Genkernel instance is running under"
+#      print_warning 1 "         process ID${EX} " 0
+#      GENPIDS=`ps -C genkernel --no-headers -o pid`
+#      echo -n "${GENPIDS}" | sed -e "s/$$//; s/ /, /g"
+#      echo 'halting...'
+#      echo
+#      print_warning 1 'Running multiple genkernels on the same source tree will cause data loss!'
+#      print_info 1 "Press ^C to halt; ^D to continue [ ${BOLD}if${NORMAL} you know what you're doing! ]"
+#      echo
+#      CTEMP="${TEMP}"
+#      TEMP=${TMPDIR-/tmp}
+#      TEMP=${TEMP}/genkernel.$RANDOM.$RANDOM.$RANDOM.$$
+#      print_info 1 'thread: Running multiple genkernels may cause problems!'
+#      print_info 1 "thread: Temporary files reallocated to ${TEMP}..."
+#      echo
+#fi
 
 
 KERNCACHE_IS_VALID=0