diff options
author | hiro <hiro@ee746299-78ed-0310-b773-934348b2243d> | 2014-04-22 07:52:06 +0000 |
---|---|---|
committer | hiro <hiro@ee746299-78ed-0310-b773-934348b2243d> | 2014-04-22 07:52:06 +0000 |
commit | e299bf2ec4aa9a8f1b1982c93d78c605d6fcfe78 (patch) | |
tree | 0f5f2785ca07bf4fd7a78f9bc99686005dae8bd7 | |
parent | f5cd0354336b4fd2c6e1beeac915217411bffe36 (diff) |
makewin32.sh: save build log.
git-svn-id: svn://sylpheed.sraoss.jp/sylpheed/trunk@3394 ee746299-78ed-0310-b773-934348b2243d
-rw-r--r-- | ChangeLog | 4 | ||||
-rwxr-xr-x | makewin32.sh | 9 |
2 files changed, 11 insertions, 2 deletions
@@ -1,3 +1,7 @@ +2014-04-22 + + * makewin32.sh: save build log. + 2014-04-21 * configure.ac: renamed from configure.in. diff --git a/makewin32.sh b/makewin32.sh index 1581f29d..d18f0bfc 100755 --- a/makewin32.sh +++ b/makewin32.sh @@ -1,7 +1,10 @@ #!/bin/sh -export LIBRARY_PATH=$LIBRARY_PATH:/usr/local/lib -export C_INCLUDE_PATH=$C_INCLUDE_PATH:/usr/local/include +export PATH=$PATH:/target/bin +export LIBRARY_PATH=$LIBRARY_PATH:/target/lib:/usr/local/lib +export C_INCLUDE_PATH=$C_INCLUDE_PATH:/target/include:/usr/local/include + +( ./configure --prefix=$HOME/dist \ --with-localedir=share/locale \ @@ -12,3 +15,5 @@ export C_INCLUDE_PATH=$C_INCLUDE_PATH:/usr/local/include && make install-strip \ && (cd plugin/attachment_tool; make install-plugin) \ && strip $HOME/dist/lib/sylpheed/plugins/attachment_tool.dll + +) 2>&1 | tee sylpheed-build.log |