diff options
author | Owain Ainsworth <oga@cvs.openbsd.org> | 2008-02-22 11:35:23 +0000 |
---|---|---|
committer | Owain Ainsworth <oga@cvs.openbsd.org> | 2008-02-22 11:35:23 +0000 |
commit | c7d89cdf37e0c152b02200c4ee9439f59e232cb2 (patch) | |
tree | 01837bd76bf1467f708cb2f2b9b63f6a334a59ee | |
parent | 19e602ae954f0d2b93bdb73744528798baa0dc2e (diff) |
Fix a build race in ssh-askpass. This shouldn't happen, so XXX it.
ok matthieu@.
xenocara is now locked.
-rw-r--r-- | app/ssh-askpass/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/app/ssh-askpass/Makefile b/app/ssh-askpass/Makefile index a0839dcbb..c3bcffe47 100644 --- a/app/ssh-askpass/Makefile +++ b/app/ssh-askpass/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.7 2007/04/09 10:33:47 matthieu Exp $ +# $OpenBSD: Makefile,v 1.8 2008/02/22 11:35:22 oga Exp $ .include <bsd.own.mk> X11BASE?= /usr/X11R6 @@ -29,6 +29,9 @@ $(CLASS).ad: $(APP_DEFAULTS) rm -f $(CLASS).ad ln -s $(.CURDIR)/$(APP_DEFAULTS) $(CLASS).ad +# XXX why isn't $(CLASS)_ad.h being build before .depend? +x11-ssh-askpass.o: $(CLASS)_ad.h + afterinstall: ${INSTALL_DATA} $(CLASS).ad \ $(DESTDIR)/etc/X11/app-defaults/$(CLASS) |