Skip to content

Commit

Permalink
Fix flex in std.toolchain()
Browse files Browse the repository at this point in the history
  • Loading branch information
kylewlacy committed Jan 6, 2025
1 parent 35e3f07 commit 73515e0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/std/toolchain/native/flex.bri
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ export default std.memo((): std.Recipe<std.Directory> => {
})
.toDirectory();

flex = flex.insert("bin/flex", std.symlink({ target: "lex" }));
flex = flex.insert("share/man/man1/flex.1", std.symlink({ target: "lex.1" }));
flex = flex.insert("bin/lex", std.symlink({ target: "flex" }));
flex = flex.insert("share/man/man1/lex.1", std.symlink({ target: "flex.1" }));

return flex;
});

0 comments on commit 73515e0

Please sign in to comment.