Skip to content

Commit

Permalink
Merge branch 'master' into ld-preload
Browse files Browse the repository at this point in the history
  • Loading branch information
raisjn authored Aug 10, 2023
2 parents 950a624 + 9d52200 commit f661140
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 6 deletions.
4 changes: 2 additions & 2 deletions docs/BUILDING.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ You can compile an individual project by running `make <project>` or `make
<project>_docker` to build the project inside a docker container.

You can change whether you are compiling for the remarkable or a PC by
adjusting the `ARCH` environment variable. See `src/actions.make` for the list
of architectures, which include (but is not limited to) `dev` and `arm`
adjusting the `TARGET` environment variable. See `src/actions.make` for the list
of targets, which include (but is not limited to) `dev` and `arm`

## Compilation

Expand Down
3 changes: 1 addition & 2 deletions src/nao/nao.sh
Original file line number Diff line number Diff line change
Expand Up @@ -116,8 +116,7 @@ function SET() {

function DISPLAY() {
use_newline_separator
OUTPUT=`for line in ${SCENE[@]}; do echo $line; done`
RETURN=`echo "$OUTPUT" | LD_PRELOAD=${_PRELOAD} ${SIMPLE}`
RETURN=`echo "${SCENE[*]}" | ${SIMPLE}`
use_space_separator
SAVED_RETURN=${RETURN}
}
Expand Down
2 changes: 1 addition & 1 deletion src/rmkit/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@ APP=rmkit
ASSET_DIR=assets/

clean:
rm ${SRC_DIR}/build/${EXE}
rm -f ${SRC_DIR}/build/${EXE}
2 changes: 1 addition & 1 deletion src/simple/main.cpy
Original file line number Diff line number Diff line change
Expand Up @@ -350,7 +350,7 @@ def main():
continue

if tokens.size() < 5:
cerr << "line " << line_no << ": not enough tokens passed"
cerr << "line " << line_no << ": not enough tokens passed" << endl
continue

if !handle_widget(line_no, scene, tokens):
Expand Down

0 comments on commit f661140

Please sign in to comment.