summaryrefslogtreecommitdiff
path: root/app/xdm
diff options
context:
space:
mode:
authorMatthieu Herrb <matthieu@cvs.openbsd.org>2010-05-30 21:03:21 +0000
committerMatthieu Herrb <matthieu@cvs.openbsd.org>2010-05-30 21:03:21 +0000
commit1906e66c028553b0c0e3cc7fb6e7cff0573857ea (patch)
tree5d22718a71cf083a5ec84964933b321268ced937 /app/xdm
parente2041630fc0ea8a0f3e617bc579e4e1980be968f (diff)
Fix a race in the creation of the app-defaults directory.
Diffstat (limited to 'app/xdm')
-rw-r--r--app/xdm/Makefile.am2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/xdm/Makefile.am b/app/xdm/Makefile.am
index 1b21b9c78..4f1e1026d 100644
--- a/app/xdm/Makefile.am
+++ b/app/xdm/Makefile.am
@@ -165,7 +165,7 @@ APPDEFAULTFILES = app-defaults/Chooser
SUFFIXES += .ad
.ad:
- [ -d app-defaults ] || mkdir app-defaults
+ [ -d app-defaults ] || mkdir -p app-defaults
cp $< $@
appdefault_DATA = $(APPDEFAULTFILES)