diff options
author | Daniel Robbins <drobbins@gentoo.org> | 2001-12-08 20:23:58 +0000 |
---|---|---|
committer | Daniel Robbins <drobbins@gentoo.org> | 2001-12-08 20:23:58 +0000 |
commit | aa579c603e73ae5e71f61e0ae80ad83b90c97fb5 (patch) | |
tree | 29b3f2f3fccdb257b8ee9df794b4e9ab1475b466 /scripts | |
parent | back from the dead (diff) | |
download | historical-aa579c603e73ae5e71f61e0ae80ad83b90c97fb5.tar.gz historical-aa579c603e73ae5e71f61e0ae80ad83b90c97fb5.tar.bz2 historical-aa579c603e73ae5e71f61e0ae80ad83b90c97fb5.zip |
new changes for a simplified build image creation process
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/build.sh | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/scripts/build.sh b/scripts/build.sh new file mode 100644 index 000000000000..a46f4b4c8a27 --- /dev/null +++ b/scripts/build.sh @@ -0,0 +1,6 @@ +#!/bin/bash +ver=1.0_rc6 +for x in `cat /usr/portage/profiles/default-${ver}/packages.build` +do + grep -E "${x}(-[^[:space:]]*)?[[:space:]]*$" /usr/portage/profiles/default-${ver}/packages | grep -v '^#' | sed -e 's:^\*::' | cat +done |