diff options
author | Matthieu Herrb <matthieu@cvs.openbsd.org> | 2006-11-29 11:30:06 +0000 |
---|---|---|
committer | Matthieu Herrb <matthieu@cvs.openbsd.org> | 2006-11-29 11:30:06 +0000 |
commit | fd514170098e0b67d4b9a6ac16068346742c32b3 (patch) | |
tree | 5428a5cba65b4a42106b19b463b793120256da8f | |
parent | 524f99ba46e9895f42ce0fe6487e585df4f72dae (diff) |
Install app-defaults resource file
-rw-r--r-- | app/ssh-askpass/Makefile | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/app/ssh-askpass/Makefile b/app/ssh-askpass/Makefile index e577f6e64..a9397d228 100644 --- a/app/ssh-askpass/Makefile +++ b/app/ssh-askpass/Makefile @@ -1,4 +1,5 @@ -# $Xenocara: Makefile,v 1.4 2006/04/17 13:26:32 matthieu Exp $ +# $OpenBSD: Makefile,v 1.2 2006/11/29 11:30:05 matthieu Exp $ + .include <bsd.own.mk> X11BASE?= /usr/X11R6 PROG= ssh-askpass @@ -28,6 +29,10 @@ $(CLASS).ad: $(APP_DEFAULTS) rm -f $(CLASS).ad ln -s $(.CURDIR)/$(APP_DEFAULTS) $(CLASS).ad +afterinstall: + $(INSTALL) $(INSTALL_COPY) $(CLASS).ad \ + $(DESTDIR)/etc/X11/app-defaults/$(CLASS) + beforedepend: $(CLASS)_ad.h .include <bsd.prog.mk> |