OpenPKG CVS Repository
http://cvs.openpkg.org/
____________________________________________________________________________
Server: cvs.openpkg.org Name: Ralf S. Engelschall
Root: /v/openpkg/cvs Email: [EMAIL PROTECTED]
Module: openpkg-src Date: 20-Jul-2006 10:48:50
Branch: HEAD Handle: 2006072009485000
Modified files:
openpkg-src/ksh ksh.spec
Log:
fix building the same way we fixed PAX by explicitly setting SHELL to
/bin/sh
Summary:
Revision Changes Path
1.43 +4 -3 openpkg-src/ksh/ksh.spec
____________________________________________________________________________
patch -p0 <<'@@ .'
Index: openpkg-src/ksh/ksh.spec
============================================================================
$ cvs diff -u -r1.42 -r1.43 ksh.spec
--- openpkg-src/ksh/ksh.spec 20 May 2006 20:10:11 -0000 1.42
+++ openpkg-src/ksh/ksh.spec 20 Jul 2006 08:48:50 -0000 1.43
@@ -38,7 +38,7 @@
Group: Shell
License: CPL
Version: %{V_pkg}
-Release: 20060520
+Release: 20060720
# list of sources
# (downloadable via username "I accept www.opensource.org/licenses/cpl"
and password "." only)
@@ -104,8 +104,9 @@
src/cmd/INIT/make.probe
;;
esac
- ./bin/package "read" || true
- ./bin/package "make" CC="%{l_cc}"
+ SHELL=/bin/sh; export SHELL
+ $SHELL -c './bin/package "read" || true'
+ $SHELL -c './bin/package "make" CC="%{l_cc}"'
%install
rm -rf $RPM_BUILD_ROOT
@@ .
______________________________________________________________________
The OpenPKG Project www.openpkg.org
CVS Repository Commit List [email protected]