diff options
author | Doug Goldstein <cardoe@gentoo.org> | 2008-08-23 06:35:27 +0000 |
---|---|---|
committer | Doug Goldstein <cardoe@gentoo.org> | 2008-08-23 06:35:27 +0000 |
commit | 1723f3da3f5b8163628f3806f9c7fc030d60f6d4 (patch) | |
tree | 8635e9aebcaa75c5a24d463a929dc25dc96aa3cc /users | |
parent | Marked desktop-effects as an official overlay. (diff) | |
download | gentoo-1723f3da3f5b8163628f3806f9c7fc030d60f6d4.tar.gz gentoo-1723f3da3f5b8163628f3806f9c7fc030d60f6d4.tar.bz2 gentoo-1723f3da3f5b8163628f3806f9c7fc030d60f6d4.zip |
remove exporting path since we're calling the script locally
Diffstat (limited to 'users')
-rw-r--r-- | users/antarus/projects/infra/use_desc_gen.sh | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/users/antarus/projects/infra/use_desc_gen.sh b/users/antarus/projects/infra/use_desc_gen.sh index 806ee11aca..277a94fde2 100644 --- a/users/antarus/projects/infra/use_desc_gen.sh +++ b/users/antarus/projects/infra/use_desc_gen.sh @@ -2,9 +2,7 @@ # Written by Douglas Goldstein <cardoe@gentoo.org> # This code is hereby placed into the public domain # -# $Id: use_desc_gen.sh,v 1.3 2008/08/16 00:45:49 cardoe Exp $ - -export PATH=/home/cardoe/work/gentoo/users/antarus/projects/infra/:${PATH} +# $Id: use_desc_gen.sh,v 1.4 2008/08/23 06:35:27 cardoe Exp $ usage() { prog=$(basename $1) @@ -45,7 +43,7 @@ echo "" >> /tmp/${pid}.use.local.desc grep -v -f /tmp/${pid}.grep "${1}/profiles/use.local.desc" > /tmp/${pid}.new.use # the secret sauce, append to new use.local.desc -use_desc_gen --repo_path "${1}" --category_file "/tmp/${pid}.categories" >> /tmp/${pid}.new.use +./use_desc_gen --repo_path "${1}" --category_file "/tmp/${pid}.categories" >> /tmp/${pid}.new.use # let's keep it sorted: use major category, minor category, and package name # as primary, secondary, and tertiary sort keys, respectively |