diff options
author | rhatto <rhatto@370017ae-e619-0410-ac65-c121f96126d4> | 2006-11-13 00:29:04 +0000 |
---|---|---|
committer | rhatto <rhatto@370017ae-e619-0410-ac65-c121f96126d4> | 2006-11-13 00:29:04 +0000 |
commit | e2e89e2f53ec0156ffaa64068974a088768a63d4 (patch) | |
tree | fb8c712a49fb78b06fe20943d72e2f46996740c4 /glew | |
parent | 0d8850a26790a809f9c5cc75eca53ad4cb5f527a (diff) | |
download | slackbuilds-e2e89e2f53ec0156ffaa64068974a088768a63d4.tar.gz slackbuilds-e2e89e2f53ec0156ffaa64068974a088768a63d4.tar.bz2 |
fixed slackbuilrc evaluation in a lot of scripts
git-svn-id: svn+slack://slack.fluxo.info/var/svn/slackbuilds@618 370017ae-e619-0410-ac65-c121f96126d4
Diffstat (limited to 'glew')
-rwxr-xr-x | glew/glew.SlackBuild | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/glew/glew.SlackBuild b/glew/glew.SlackBuild index 8fc3e5b9..07ae76bd 100755 --- a/glew/glew.SlackBuild +++ b/glew/glew.SlackBuild @@ -22,8 +22,8 @@ if [ -f "/etc/slackbuildrc" ]; then source /etc/slackbuildrc fi -if [ -f "~/.slackbuildrc" ]; then - source ~/.slackbuildrc +if [ -f "/root/.slackbuildrc" ]; then + source /root/.slackbuildrc fi # default settings |