Skip to content

Commit

Permalink
Mention /etc/portage/make.conf instead of /etc/make.conf
Browse files Browse the repository at this point in the history
  • Loading branch information
vaeth committed Jul 12, 2017
1 parent c823cc2 commit 3307113
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions bin/useflags
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env perl
BEGIN { require 5.006_001 }
package Useflags;
our $VERSION = 'v4.1.2';
our $VERSION = 'v4.1.3';
eval { $VERSION = version->declare($VERSION) };
eval 'use version 0.77; $VERSION = version->declare($VERSION)' if($@);

Expand Down Expand Up @@ -552,11 +552,11 @@ printf \"\%s\" \"\$USE\"\' bash $file`
}


# Now we interpret the value of the USE variable in /etc/make.conf:
# Now we interpret the value of the USE variable in /etc/portage/make.conf:
sub useset_make_conf {
($_, my $useflags) = @_;
(m{^\s*$}) and
&fatal('No USE variable specified in /etc/make.conf or /etc/portage/make.conf');
&fatal('No USE variable specified in /etc/portage/make.conf or /etc/make.conf');
for(split()) {
chomp();
s{^\s*([^\s]*).*$}{$1};
Expand Down

0 comments on commit 3307113

Please sign in to comment.