Skip to content

Commit

Permalink
Missing BINDIR definition in meson.build
Browse files Browse the repository at this point in the history
  • Loading branch information
radare committed May 9, 2024
1 parent edf215e commit 7fe0fdd
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 1 deletion.
3 changes: 3 additions & 0 deletions libr/main/rax2.c
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,9 @@ static bool format_output(RNum *num, char mode, const char *s, RaxMode m, RaxAct
float *f = (float *) &n2;
printf ("%ff\n", *f);
}
break;
case 'V':

break;
case 'f':
printf ("%.01lf\n", num->fvalue);
Expand Down
1 change: 1 addition & 0 deletions meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -360,6 +360,7 @@ userconf.set10('HAVE_LINUX_CAN_H', false)
userconf.set10('DEBUGGER', has_debugger)
userconf.set('ETCDIR', join_paths(r2_prefix, 'etc'))
userconf.set('PREFIX', r2_prefix)
userconf.set('BINDIR', join_paths(r2_prefix, 'bin'))
if host_machine.system() == 'windows'
userconf.set('LIBDIR', r2_libdir)
userconf.set('INCLUDEDIR', r2_incdir)
Expand Down
2 changes: 1 addition & 1 deletion test/db/cmd/cmd_is
Original file line number Diff line number Diff line change
Expand Up @@ -72,4 +72,4 @@ EXPECT=<<EOF
0x000013e0 35 sym._ZN7MyClassD1Ev
0x000013e0 35 sym._ZN7MyClassD2Ev
EOF
RUN
RUN

0 comments on commit 7fe0fdd

Please sign in to comment.