$OpenBSD: patch-Makefile,v 1.1.1.1 2012/02/27 08:45:50 bentley Exp $
--- Makefile.orig	Mon Oct 31 08:56:58 2011
+++ Makefile	Mon Feb 27 01:16:58 2012
@@ -22,12 +22,12 @@ options:
 
 .c.o:
 	@echo "CC $<"
-	@$(CC) $(CFLAGS) -DVERSION=\"$(VERSION)\" -c -o $@ $<
+	$(CC) $(CFLAGS) -DVERSION=\"$(VERSION)\" -c -o $@ $<
 
 $(OBJ) config: Makefile config.h
 
 config: config.c
-	@$(CC) $(CFLAGS) -o $@ $@.c
+	$(CC) $(CFLAGS) -o $@ $@.c
 
 config.h:
 	@echo "creating $@ from config.def.h"
@@ -35,7 +35,7 @@ config.h:
 
 sxiv:	$(OBJ) config
 	@echo "CC -o $@"
-	@$(CC) $(LDFLAGS) -o $@ $(OBJ) $(LIBS) $$(./config -l)
+	$(CC) $(LDFLAGS) -o $@ $(OBJ) $(LIBS) $$(./config -l)
 
 clean:
 	@echo "cleaning"
@@ -52,7 +52,7 @@ dist: clean
 
 install: all
 	@echo "installing executable file to $(DESTDIR)$(PREFIX)/bin"
-	@install -D -m 755 sxiv $(DESTDIR)$(PREFIX)/bin/sxiv
+	@install -m 755 sxiv $(DESTDIR)$(PREFIX)/bin/sxiv
 	@echo "installing manual page to $(DESTDIR)$(MANPREFIX)/man1"
 	@mkdir -p $(DESTDIR)$(MANPREFIX)/man1
 	@sed "s/VERSION/$(VERSION)/g" sxiv.1 > $(DESTDIR)$(MANPREFIX)/man1/sxiv.1
