mirror of
git://projects.qi-hardware.com/ben-wpan.git
synced 2024-11-25 17:43:09 +02:00
Fix two bugs left from the great reorganization.
- Makefile (UPLOAD): updated for new directory structure - scripts/schhist2web: unchanged Postscript files were not replaced with symlinks because the symlink paths were wrong
This commit is contained in:
parent
a3aac7e80b
commit
80c6f3e75f
@ -1,8 +1,8 @@
|
||||
SHELL = /bin/bash
|
||||
|
||||
UPLOAD = {index.html,unchanged.png,thumb_*,diff_*,pdf_*,html_*}
|
||||
CACHE_DIRS = {ppm0,ppm1,ppm2,ps}
|
||||
DEST = werner@host:/home/httpd/almesberger/misc/ben/
|
||||
RSYNC = rsync -a --progress
|
||||
RSYNC = eval rsync -a --progress "--exclude "$(CACHE_DIRS)/
|
||||
|
||||
.PHONY: all ben-wpan-schhist ben-wpan-schhist-upload
|
||||
.PHONY: xue-schhist xue-schhist-upload
|
||||
@ -24,7 +24,7 @@ ben-wpan-schhist:
|
||||
./schhist2web atrf/wpan-atrf.sch
|
||||
|
||||
ben-wpan-schhist-upload:
|
||||
$(RSYNC) _out/$(UPLOAD) $(DEST)/demo/
|
||||
$(RSYNC) _out/* $(DEST)/demo/
|
||||
|
||||
xue-schhist:
|
||||
SCHHIST_TITLE=Xue \
|
||||
@ -33,7 +33,7 @@ xue-schhist:
|
||||
./schhist2web -S ../../xue kicad/xue-rnc/xue-rnc.sch _xue
|
||||
|
||||
xue-schhist-upload:
|
||||
$(RSYNC) _xue/$(UPLOAD) $(DEST)/demo2/
|
||||
$(RSYNC) _xue/* $(DEST)/demo2/
|
||||
|
||||
cntr-schhist:
|
||||
SCHHIST_TITLE=ben-wpan/cntr \
|
||||
@ -42,4 +42,4 @@ cntr-schhist:
|
||||
./schhist2web cntr/cntr.sch _cntr
|
||||
|
||||
cntr-schhist-upload:
|
||||
$(RSYNC) _cntr/$(UPLOAD) $(DEST)/demo3/
|
||||
$(RSYNC) _cntr/* $(DEST)/demo3/
|
||||
|
@ -250,7 +250,7 @@ for n in $first `cd "$dir" && git rev-list --reverse $first..HEAD`; do
|
||||
symlink "../../$head/$d/${m##*/}" "$cache/$n/$d/${m##*/}"
|
||||
done
|
||||
m_ps=${m%.ppm}.ps
|
||||
symlink "../../$head/$d/${m_ps##*/}" "$cache/$n/$d/${m_ps##*/}"
|
||||
symlink "../../$head/ps/${m_ps##*/}" "$cache/$n/ps/${m_ps##*/}"
|
||||
fi
|
||||
fi
|
||||
touch "$out/names/`basename \"$m\" .ppm`"
|
||||
|
Loading…
Reference in New Issue
Block a user