diff options
author | Ryan Kavanagh <rak@debian.org> | 2012-05-09 08:27:06 -0400 |
---|---|---|
committer | Ryan Kavanagh <rak@debian.org> | 2012-05-09 08:27:06 -0400 |
commit | 0367ae673f3f6bf9eaba3c81ecd8a1b525b9a911 (patch) | |
tree | 335317f6e8de2d44975b4d6e75c944809fb47fa6 /dm | |
parent | Fixed epsilon-home screenlayout again (diff) |
Fix bug in dm install that installed dirs into subdirectories of each other
Diffstat (limited to 'dm')
-rwxr-xr-x | dm | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -115,7 +115,7 @@ $(GPG_FILES): build/%: % $(SUBSTS_FILE) [ -d $(dir $@) ] || mkdir -p $(dir $@) - ( [ -d $< ] && rsync -a $<* $@ ) || rsync -a $< $@ + ( [ -d $< ] && rsync -a $</* $@/ ) || rsync -a $< $@ @# sed will only be called if $* is in LOCAL_FILES. @# Thought of using ifeq/ifneq, but the gmake manual reads: @# "make evaluates conditionals when it reads a makefile. Consequently, |