]> arthur.barton.de Git - netatalk.git/commitdiff
Don't print scary (but harmless) errors, when links in $(prefix)/sbin can't
authorsrittau <srittau>
Tue, 20 Nov 2001 17:06:38 +0000 (17:06 +0000)
committersrittau <srittau>
Tue, 20 Nov 2001 17:06:38 +0000 (17:06 +0000)
be removed in "make install".

etc/psf/Makefile.am

index 6329583017d1085f4d77e907d1a9b3f0ce451b39..16cc68045c708efb9db9818901c0b02651fb09a1 100644 (file)
@@ -28,7 +28,7 @@ psf_LINKS = ofpap ifpap tfpap ifpaprev tfpaprev ofwpap ifwpap \
 
 install-exec-local:
        @list='$(psf_LINKS)'; for l in $$list; do \
-               rm $(DESTDIR)$(sbindir)/$$l || true; \
+               rm $(DESTDIR)$(sbindir)/$$l 2>/dev/null || true; \
                $(LN_S) psf $(DESTDIR)$(sbindir)/$$l;  \
        done