tags 372649 + patch
thanks
On Tue, Jul 25, 2006 at 05:30:25AM -0400, Daniel T. Chen wrote:
> Using a shell other than bash will trigger the bug for this report.
> pushd/popd are the culprits in config/site.def.DEBIAN.
Nice catch Daniel! The attached patch fixes compilation with dash. And
bash is fine with it.
Thanks,
Thomas
--- config/site.def.DEBIAN 2006-07-25 22:03:34.000000000 +0200
+++ config/site.def.DEBIAN+ 2006-07-25 22:04:02.393105000 +0200
@@ -49,9 +49,9 @@
MakeDir(dest) @@\
$(INSTALL) -c $(INSTLIBFLAGS) Concat(lib,libname.so.rev) dest @@\
[EMAIL PROTECTED] [ -f dest/Concat(lib,libname.so) ]; then exit 0; else
\ @@\
- pushd dest; \ @@\
+ (cd dest; \ @@\
$(LN) Concat(lib,libname.so.rev) Concat(lib,libname.so.maj);\ @@\
- $(LN) Concat(lib,libname.so.maj) Concat(lib,libname.so); popd; fi
+ $(LN) Concat(lib,libname.so.maj) Concat(lib,libname.so);); fi