Skip to content

Commit

Permalink
Merge pull request #144 from davidgiven/build
Browse files Browse the repository at this point in the history
Fix some build oddities.
  • Loading branch information
davidgiven authored Aug 5, 2024
2 parents c3c7e17 + 46b0052 commit a99a48c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion build/zip.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ def zip(self, name, flags="", items: TargetsMap = {}):
for k, v in items.items():
cs += [
"cat %s | $(ZIP) -q %s {outs[0]} -" % (filenameof(v), flags),
"echo '@ -\\n@=%s\\n' | $(ZIPNOTE) -w {outs[0]}" % k,
"printf '@ -\\n@=%s\\n' | $(ZIPNOTE) -w {outs[0]}" % k,
]
ins += [v]

Expand Down
4 changes: 2 additions & 2 deletions include/zif.inc
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@
.set zloopsp, 0
.set zifsp, 0

.macro zproc name, section=.text, binding=global
.section \section, "ax"
.macro zproc name, sect=.text, binding=global
.section \sect, "ax"
.\binding \name
\name:
.endm
Expand Down

0 comments on commit a99a48c

Please sign in to comment.