Get logger working with new token system

This commit is contained in:
Neale Pickett 2011-03-25 16:22:17 -06:00
parent cd16a73827
commit f7de2f45b8
4 changed files with 13 additions and 6 deletions

2
.gitignore vendored
View File

@ -6,4 +6,4 @@ bin/
build/
cache/
target/
packages/forensics

View File

@ -77,9 +77,14 @@ for dn in $indir/[0-9]*; do
touch $tgt/index.html
if [ -f $dn/Makefile ]; then
# If there's a makefile, run make
make -C $dn DESTDIR=$(pwd)/$tgt || exit 1
# If there's a Makefile, run make
make -C $dn || exit 1
files=$(cd $tgt; echo *)
fi
if [ -f $dn/@manifest.txt ]; then
# If there's a manifest, use that
files=$(cat $dn/@manifest.txt)
else
# Otherwise, look for special files and copy the rest
files=

1
packages/logger/src/arc4.c Symbolic link
View File

@ -0,0 +1 @@
../../../src/arc4.c

1
packages/logger/src/arc4.h Symbolic link
View File

@ -0,0 +1 @@
../../../src/arc4.h