summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaweł Hajdan <phajdan.jr@gentoo.org>2011-06-08 13:36:13 +0000
committerPaweł Hajdan <phajdan.jr@gentoo.org>2011-06-08 13:36:13 +0000
commitfc31a47264a5159949ca285f35a5f69cfac9c467 (patch)
treea8ac716310f33bf670519ef71f4ce411433e8ead /profiles/targets/developer
parentRevert previous commit (diff)
downloadgentoo-2-fc31a47264a5159949ca285f35a5f69cfac9c467.tar.gz
gentoo-2-fc31a47264a5159949ca285f35a5f69cfac9c467.tar.bz2
gentoo-2-fc31a47264a5159949ca285f35a5f69cfac9c467.zip
Remove "You should enable -g (or higher) for debugging" message from the developer profile, <http://archives.gentoo.org/gentoo-dev/msg_b3b395864767d6b6f29f55e0911d4431.xml>
Diffstat (limited to 'profiles/targets/developer')
-rw-r--r--profiles/targets/developer/profile.bashrc18
1 files changed, 0 insertions, 18 deletions
diff --git a/profiles/targets/developer/profile.bashrc b/profiles/targets/developer/profile.bashrc
deleted file mode 100644
index 2fc6a40b10ae..000000000000
--- a/profiles/targets/developer/profile.bashrc
+++ /dev/null
@@ -1,18 +0,0 @@
-#!/bin/bash
-
-# We change around a few variables, since we've enabled splitdebug.
-debug=0
-for flag in ${CFLAGS}
-do
- case ${flag} in
- -g*) debug=1 ;;
- esac
-done
-
-if [ ${debug} -eq 0 ]
-then
- if [[ "${EBUILD_PHASE}" == "setup" ]]
- then
- echo "You should enable -g (or higher) for debugging!"
- fi
-fi