Makefile: always return success and process when creating a symlink - thinglaun… | |
git clone git://bitreich.org/thinglaunch | |
Log | |
Files | |
Refs | |
Tags | |
LICENSE | |
--- | |
commit dfd9734eae6f1adea3f1afc84cb82beee283da84 | |
parent 4e3211426e2b708b932040e32befb60aa40f04d9 | |
Author: Hiltjo Posthuma <[email protected]> | |
Date: Sat, 8 Feb 2020 16:44:55 +0100 | |
Makefile: always return success and process when creating a symlink | |
Signed-off-by: Christoph Lohmann <[email protected]> | |
Diffstat: | |
M Makefile | 4 ++-- | |
1 file changed, 2 insertions(+), 2 deletions(-) | |
--- | |
diff --git a/Makefile b/Makefile | |
@@ -28,8 +28,8 @@ ${OBJ}: config.h config.mk | |
${NAME}: ${OBJ} | |
@echo CC -o $@ | |
@${CC} -o $@ ${OBJ} ${LDFLAGS} | |
- @ln -s ${NAME} thingaskpass 2>/dev/null; true | |
- @ln -s ${NAME} thingsudoaskpass 2>/dev/null; true | |
+ @ln -s ${NAME} thingaskpass 2>/dev/null || true | |
+ @ln -s ${NAME} thingsudoaskpass 2>/dev/null || true | |
clean: | |
@echo cleaning |