diff options
author | Paweł Hajdan <phajdan.jr@gentoo.org> | 2011-06-08 13:36:13 +0000 |
---|---|---|
committer | Paweł Hajdan <phajdan.jr@gentoo.org> | 2011-06-08 13:36:13 +0000 |
commit | fc31a47264a5159949ca285f35a5f69cfac9c467 (patch) | |
tree | a8ac716310f33bf670519ef71f4ce411433e8ead /profiles/targets/developer | |
parent | Revert previous commit (diff) | |
download | gentoo-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.bashrc | 18 |
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 |