Makefile: Correct profileds target inclusion
The "install" target was working improperly because of line 4 not containing the proper "profileds" target name as a dependency.
This commit is contained in:
parent
c0242226d6
commit
0a365ae4e8
1 changed files with 1 additions and 1 deletions
|
|
@ -1,7 +1,7 @@
|
||||||
INSTALL += $(HOME)/.profile \
|
INSTALL += $(HOME)/.profile \
|
||||||
$(HOME)/.vim/bundle/Vundle.vim $(HOME)/.vimrc \
|
$(HOME)/.vim/bundle/Vundle.vim $(HOME)/.vimrc \
|
||||||
$(HOME)/.aliases aliases \
|
$(HOME)/.aliases aliases \
|
||||||
$(HOME)/.profile.d profile.d
|
$(HOME)/.profile.d profileds
|
||||||
ALIASES = $(foreach a,$(wildcard .aliases/*),$(subst .aliases/,$(HOME)/.aliases/,$(a)))
|
ALIASES = $(foreach a,$(wildcard .aliases/*),$(subst .aliases/,$(HOME)/.aliases/,$(a)))
|
||||||
PROFILEDS = $(foreach p,$(wildcard .profile.d/*),$(subst .profile.d/,$(HOME)/.profile.d/,$(p)))
|
PROFILEDS = $(foreach p,$(wildcard .profile.d/*),$(subst .profile.d/,$(HOME)/.profile.d/,$(p)))
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue