diff options
author | Ian Moffett <ian@osmora.org> | 2025-10-15 15:53:53 -0400 |
---|---|---|
committer | Ian Moffett <ian@osmora.org> | 2025-10-15 15:53:53 -0400 |
commit | c3817dc16c1deab64756e4a9fcf8f7be91aaa12f (patch) | |
tree | c63231f49f81d8bfc5668ae4a782dff8a0a5129e /src/cmd | |
parent | d071ef10b29607561994ddaab80321545c09c142 (diff) |
build: Move 'login' to system binaries
Signed-off-by: Ian Moffett <ian@osmora.org>
Diffstat (limited to 'src/cmd')
-rw-r--r-- | src/cmd/login/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cmd/login/Makefile b/src/cmd/login/Makefile index 1373bc9..f0018e8 100644 --- a/src/cmd/login/Makefile +++ b/src/cmd/login/Makefile @@ -7,7 +7,7 @@ CFLAGS = -L$(LIBC_DIR) -lc $(INTERNAL_CFLAGS) \ -I../../lib/libwidget/include/ OBJECTS = $(CFILES:%.c=%.o) -$(SYSROOT)/usr/bin/login: $(OBJECTS) +$(SYSROOT)/usr/sbin/login: $(OBJECTS) $(LD) $(OBJECTS) -o $@ $(CFLAGS) %.o: %.c |