Mercurial > audlegacy
changeset 2390:76745f0dd6f4 trunk
[svn] - portability fixes for solaris
author | nenolod |
---|---|
date | Tue, 23 Jan 2007 09:21:53 -0800 |
parents | 2413a9314bed |
children | 1ab061263ee8 |
files | ChangeLog mk/objective.mk |
diffstat | 2 files changed, 16 insertions(+), 8 deletions(-) [+] |
line wrap: on
line diff
--- a/ChangeLog Tue Jan 23 02:51:10 2007 -0800 +++ b/ChangeLog Tue Jan 23 09:21:53 2007 -0800 @@ -1,3 +1,11 @@ +2007-01-23 10:51:10 +0000 Yoshiki Yazawa <yaz@cc.rim.or.jp> + revision [3788] + - strings.h should be installed because plugins may use str_to_utf8(). + + trunk/src/audacious/Makefile | 1 + + 1 file changed, 1 insertion(+) + + 2007-01-23 02:21:22 +0000 William Pitcock <nenolod@sacredspiral.co.uk> revision [3786] - attempt to bind the audacious-plugins domain
--- a/mk/objective.mk Tue Jan 23 02:51:10 2007 -0800 +++ b/mk/objective.mk Tue Jan 23 09:21:53 2007 -0800 @@ -15,7 +15,7 @@ if [ $(VERBOSITY) -gt 0 ]; then \ echo "[installing overlay: $$i]"; \ fi; \ - (pushd $$i > /dev/null; OVERLAYS="" $(MAKE) install || exit; cd ..); \ + cd $$i; OVERLAYS="" $(MAKE) install || exit; cd ..; \ done; \ fi @if [ "x$(SUBDIRS)" != "x" ]; then \ @@ -23,7 +23,7 @@ if [ $(VERBOSITY) -gt 0 ]; then \ echo "[installing subobjective: $$i]"; \ fi; \ - (cd $$i; OVERLAYS="" $(MAKE) install || exit; cd ..); \ + cd $$i; OVERLAYS="" $(MAKE) install || exit; cd ..; \ done; \ fi @if [ "x$(OBJECTIVE_DIRECTORIES)" != "x" ]; then \ @@ -73,7 +73,7 @@ if [ $(VERBOSITY) -gt 0 ]; then \ echo "[cleaning overlay: $$i]"; \ fi; \ - (pushd $$i > /dev/null; OVERLAYS="" $(MAKE) clean || exit; popd); \ + cd $$i; OVERLAYS="" $(MAKE) clean || exit; cd ..; \ done; \ fi @if [ "x$(SUBDIRS)" != "x" ]; then \ @@ -81,7 +81,7 @@ if [ $(VERBOSITY) -gt 0 ]; then \ echo "[cleaning subobjective: $$i]"; \ fi; \ - (cd $$i; OVERLAYS="" $(MAKE) clean || exit; cd ..); \ + cd $$i; OVERLAYS="" $(MAKE) clean || exit; cd ..; \ done; \ fi $(MAKE) clean-posthook @@ -112,7 +112,7 @@ if [ $(VERBOSITY) -gt 0 ]; then \ echo "[distcleaning overlay: $$i]"; \ fi; \ - (pushd $$i > /dev/null; OVERLAYS="" $(MAKE) distclean || exit; popd); \ + cd $$i; OVERLAYS="" $(MAKE) distclean || exit; cd ..; \ done; \ fi @if [ "x$(SUBDIRS)" != "x" ]; then \ @@ -120,7 +120,7 @@ if [ $(VERBOSITY) -gt 0 ]; then \ echo "[distcleaning subobjective: $$i]"; \ fi; \ - (cd $$i; OVERLAYS="" $(MAKE) distclean || exit; cd ..); \ + cd $$i; OVERLAYS="" $(MAKE) distclean || exit; cd ..; \ done; \ fi @if [ -f Makefile.in ]; then \ @@ -137,7 +137,7 @@ if [ $(VERBOSITY) -gt 0 ]; then \ echo "[building overlay: $$i]"; \ fi; \ - (pushd $$i > /dev/null; OVERLAYS="" $(MAKE) || exit; popd); \ + cd $$i; OVERLAYS="" $(MAKE) || exit; cd ..; \ if [ $(VERBOSITY) -gt 0 ]; then \ echo "[finished overlay: $$i]"; \ fi; \ @@ -148,7 +148,7 @@ if [ $(VERBOSITY) -gt 0 ]; then \ echo "[building subobjective: $$i]"; \ fi; \ - (cd $$i; OVERLAYS="" $(MAKE) || exit; cd ..); \ + cd $$i; OVERLAYS="" $(MAKE) || exit; cd ..; \ if [ $(VERBOSITY) -gt 0 ]; then \ echo "[finished subobjective: $$i]"; \ fi; \