URI: 
       Makefile: always return success and process when creating a symlink - thinglaunch - A simple command and password promtper for X11.
  HTML git clone git://bitreich.org/thinglaunch
   DIR Log
   DIR Files
   DIR Refs
   DIR Tags
   DIR LICENSE
       ---
   DIR commit dfd9734eae6f1adea3f1afc84cb82beee283da84
   DIR parent 4e3211426e2b708b932040e32befb60aa40f04d9
  HTML Author: Hiltjo Posthuma <hiltjo@codemadness.org>
       Date:   Sat,  8 Feb 2020 16:44:55 +0100
       
       Makefile: always return success and process when creating a symlink
       
       Signed-off-by: Christoph Lohmann <20h@r-36.net>
       
       Diffstat:
         M Makefile                            |       4 ++--
       
       1 file changed, 2 insertions(+), 2 deletions(-)
       ---
   DIR 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