diff options
author | Albert Lee <trisk@acm.jhu.edu> | 2008-12-01 19:03:49 -0500 |
---|---|---|
committer | Albert Lee <trisk@acm.jhu.edu> | 2008-12-01 19:03:49 -0500 |
commit | 3df522ce763ba9b478c1c866ecfc5d00c20d23d3 (patch) | |
tree | 9bb888da07acc3ef5a6de37585ca00d66a277569 /dist/mkfilelist | |
parent | 4a8429a2bff8363d2ab0aa8913d9cd82f115c584 (diff) | |
download | plan9port-3df522ce763ba9b478c1c866ecfc5d00c20d23d3.tar.gz plan9port-3df522ce763ba9b478c1c866ecfc5d00c20d23d3.tar.bz2 plan9port-3df522ce763ba9b478c1c866ecfc5d00c20d23d3.zip |
mkfilelist: give find an argument
Diffstat (limited to 'dist/mkfilelist')
-rwxr-xr-x | dist/mkfilelist | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dist/mkfilelist b/dist/mkfilelist index 4061e1cf..eaea8933 100755 --- a/dist/mkfilelist +++ b/dist/mkfilelist @@ -1,6 +1,6 @@ #!/usr/local/plan9/bin/rc -@{cd $PLAN9; find -type f -print; find -type d -print | sed 's;$;/;'} | +@{cd $PLAN9; find . -type f -print; find . -type d -print | sed 's;$;/;'} | sort | sed 's;^./;;' | grep . | awk -vplan9'='$PLAN9 ' function cat(s) { |