smol_http

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README | LICENSE

commit faf705e799cb093ba401a1adfb7193a16e9c1ef3
parent 57250081cd9bd1192b869f899b5abceaffbe07e2
Author: Anton Kling <anton@kling.gg>
Date:   Sat,  1 Jan 2022 14:21:55 +0100

Remove usage of "sudo" in Makefile as all systems may not have it.

Diffstat:
MMakefile | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/Makefile b/Makefile @@ -2,8 +2,8 @@ CFLAGS=-Wall -pedantic -Werror -Wimplicit-fallthrough smol_http: smol_http.c $(CC) $(CFLAGS) $^ -o $@ - sudo chown root:root $@ - sudo chmod u+s $@ + chown root:root $@ + chmod u+s $@ install: all mkdir -p /usr/bin