diff mbox

sdl: Fix missing autoconf

Message ID 1389361123-2369-1-git-send-email-clshotwe@rockwellcollins.com
State Accepted
Commit 755bed66356d81974fdbd25ff15e80d270a45920
Headers show

Commit Message

Clayton Shotwell Jan. 10, 2014, 1:38 p.m. UTC
Fixing an issue seen on the autobuilders with sdl failing to run the
autogen.sh script. Several of the autobuild issues are listed below.

http://autobuild.buildroot.net/results/7326631048bc9e15ffadc6f541f2235592b5259b/
http://autobuild.buildroot.net/results/0adf5ea64075323eba1183f93c16d2954673f3e1/

Signed-off-by: Clayton Shotwell <clshotwe@rockwellcollins.com>
---
 package/sdl/sdl.mk |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Peter Korsgaard Jan. 10, 2014, 2:01 p.m. UTC | #1
>>>>> "Clayton" == Clayton Shotwell <clshotwe@rockwellcollins.com> writes:

 > Fixing an issue seen on the autobuilders with sdl failing to run the
 > autogen.sh script. Several of the autobuild issues are listed below.

 > http://autobuild.buildroot.net/results/7326631048bc9e15ffadc6f541f2235592b5259b/
 > http://autobuild.buildroot.net/results/0adf5ea64075323eba1183f93c16d2954673f3e1/

 > Signed-off-by: Clayton Shotwell <clshotwe@rockwellcollins.com>

Committed, thanks.
diff mbox

Patch

diff --git a/package/sdl/sdl.mk b/package/sdl/sdl.mk
index a30a31e..ba5fbca 100644
--- a/package/sdl/sdl.mk
+++ b/package/sdl/sdl.mk
@@ -14,7 +14,7 @@  SDL_INSTALL_STAGING = YES
 # we're patching configure.in, but package cannot autoreconf with our version of
 # autotools, so we have to do it manually instead of setting SD_AUTORECONF = YES
 define SDL_RUN_AUTOGEN
-	cd $(@D) && ./autogen.sh
+	cd $(@D) && PATH=$(HOST_PATH) ./autogen.sh
 endef
 
 SDL_POST_PATCH_HOOKS += SDL_RUN_AUTOGEN