diff options
author | Mike Buland <eichlan@xagasoft.com> | 2010-01-19 18:25:00 +0000 |
---|---|---|
committer | Mike Buland <eichlan@xagasoft.com> | 2010-01-19 18:25:00 +0000 |
commit | afde278cf7994f8c8c54095adebb2b0b00f41a17 (patch) | |
tree | edec64d3f8e1ed0173da717b7d85e388e25bfbca | |
parent | 5c78c79b83283780d9494c8c127e3bc1aea83c73 (diff) | |
download | build-afde278cf7994f8c8c54095adebb2b0b00f41a17.tar.gz build-afde278cf7994f8c8c54095adebb2b0b00f41a17.tar.bz2 build-afde278cf7994f8c8c54095adebb2b0b00f41a17.tar.xz build-afde278cf7994f8c8c54095adebb2b0b00f41a17.zip |
Fixed some bugs and typos in the install portions of the build default.bld file.
Diffstat (limited to '')
-rw-r--r-- | default.bld | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/default.bld b/default.bld index 784fdda..6309518 100644 --- a/default.bld +++ b/default.bld | |||
@@ -122,7 +122,7 @@ target "/usr/lib/build" | |||
122 | display "symlink"; | 122 | display "symlink"; |
123 | profile "install" | 123 | profile "install" |
124 | { | 124 | { |
125 | execute("ln -fsv \"${INPUT}\" \"${OUTPUT\""); | 125 | execute("ln -fsv \"${INPUT}\" \"${OUTPUT}\""); |
126 | } | 126 | } |
127 | } | 127 | } |
128 | 128 | ||
@@ -138,6 +138,8 @@ for vimdir in dirs("/usr/share/vim/vim*") do | |||
138 | display "install"; | 138 | display "install"; |
139 | profile "install" | 139 | profile "install" |
140 | { | 140 | { |
141 | DIR = OUTPUT.dirName(); | ||
142 | execute("mkdir -p ${DIR}"); | ||
141 | execute("cp -f ${INPUT} ${OUTPUT}"); | 143 | execute("cp -f ${INPUT} ${OUTPUT}"); |
142 | } | 144 | } |
143 | } | 145 | } |