projects
/
autobuild.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
eef2f30
)
distcheck should set DISTCHECK_CONFIGURE_FLAGS properly.
author
PHO
<pho@cielonegro.org>
Wed, 25 Jul 2012 04:18:09 +0000
(13:18 +0900)
committer
PHO
<pho@cielonegro.org>
Wed, 25 Jul 2012 04:18:09 +0000
(13:18 +0900)
lib/run.bash
patch
|
blob
|
history
src/main.bash
patch
|
blob
|
history
diff --git
a/lib/run.bash
b/lib/run.bash
index b68dc33bf008d6a1b61b35985ae98d800ff4f5b1..2017149da3adac9dfc55f6f4c20cfc776ade9af9 100644
(file)
--- a/
lib/run.bash
+++ b/
lib/run.bash
@@
-14,5
+14,5
@@
function run () {
echo "$@"
fi
- $@
+ "$@"
}
diff --git
a/src/main.bash
b/src/main.bash
index d64aaf02f3ad229620c3e44a76a1b9ddc1c70956..f5659701c632389c9844480d97ed8d48d1ff4ba3 100644
(file)
--- a/
src/main.bash
+++ b/
src/main.bash
@@
-1,5
+1,5
@@
function runMake () {
- run gmake -w -j $(detectNumCPUs)
$@
+ run gmake -w -j $(detectNumCPUs)
"$@"
}
function configure () {
@@
-46,7
+46,7
@@
function dist () {
function distcheck () {
configure
- runMake -C "_build" distcheck
+ runMake -C "_build" distcheck
DISTCHECK_CONFIGURE_FLAGS="${configArgs[*]}"
}
function install () {