diff options
author | Mike Buland <eichlan@xagasoft.com> | 2012-11-08 22:47:23 +0000 |
---|---|---|
committer | Mike Buland <eichlan@xagasoft.com> | 2012-11-08 22:47:23 +0000 |
commit | 795d0737fed40d88a7801b451b7750ba90802345 (patch) | |
tree | b561a10468955d1a893a828446dbeebd225a28f6 /default.bld | |
parent | 8891504ae11f7ae5ed5e9eb05ec3686564617373 (diff) | |
download | build-795d0737fed40d88a7801b451b7750ba90802345.tar.gz build-795d0737fed40d88a7801b451b7750ba90802345.tar.bz2 build-795d0737fed40d88a7801b451b7750ba90802345.tar.xz build-795d0737fed40d88a7801b451b7750ba90802345.zip |
Fixed a few condition issues, and the install script is a little better, I think.
Diffstat (limited to '')
-rw-r--r-- | default.bld | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/default.bld b/default.bld index cfe448e..4c71725 100644 --- a/default.bld +++ b/default.bld | |||
@@ -126,9 +126,12 @@ target PREFIX + "/bin/build" | |||
126 | { | 126 | { |
127 | display "install"; | 127 | display "install"; |
128 | tag "install"; | 128 | tag "install"; |
129 | requires "build"; | ||
130 | profile "build" | 129 | profile "build" |
131 | { | 130 | { |
131 | if !exists("build") then | ||
132 | { | ||
133 | build: "build"; | ||
134 | } | ||
132 | execute("install -T -s build ${OUTPUT}"); | 135 | execute("install -T -s build ${OUTPUT}"); |
133 | } | 136 | } |
134 | } | 137 | } |