diff options
author | John Ankarström <john@ankarstrom.se> | 2021-01-31 18:31:20 +0000 |
---|---|---|
committer | John Ankarström <john@ankarstrom.se> | 2021-01-31 18:31:20 +0000 |
commit | e17d5accf61e817fd71de5ea0e5c22b154d3d436 (patch) | |
tree | 58044e72e37a0b8b89199b90d87cae9ff3218d48 | |
parent | 3ab42a5fb02a2652cae089bd3f936729fd49382d (diff) | |
download | em-e17d5accf61e817fd71de5ea0e5c22b154d3d436.tar.gz |
Fix aux/getflags bug when called from mk
Kind of bad that aux/getflags gets so confused when flag*
variables are already set.
-rwxr-xr-x | htindex | 1 | ||||
-rwxr-xr-x | htwrap | 1 | ||||
-rw-r--r-- | mkfile | 5 |
3 files changed, 3 insertions, 4 deletions
@@ -1,4 +1,5 @@ #!/bin/rc -e +rfork E # index -- add ids to headings and print index to stderr @@ -1,4 +1,5 @@ #!/bin/rc -e +rfork E # htwrap -- create standalone HTML document @@ -1,9 +1,6 @@ test.html: test.em path=(. /bin) - ramfs -p - em test.em > /tmp/1 - htwrap -t /tmp/1 > /tmp/2 - htindex -s /tmp/2 > test.html + em test.em | htwrap -t | htindex -s > test.html README.html: README path=(. /bin) |