use /usr/bin/find and uname for cygwin version

This commit is contained in:
Bill Hoffman 2002-09-24 10:47:04 -04:00
parent d86d95cf2b
commit 9314bb40ad
2 changed files with 6 additions and 6 deletions

View File

@ -65,7 +65,7 @@ install()
${INSTALL_DIR}${PREFIX}/doc/Cygwin/${FULLPKG}.README &&
touch ${INSTALL_DIR}${PREFIX}/doc/${PKG}-${VER}/MANIFEST &&
cd ${INSTALL_DIR} &&
FILES=`find .${PREFIX} -type f |sed 's/^\.\//\//'` &&
FILES=`/usr/bin/find .${PREFIX} -type f |sed 's/^\.\//\//'` &&
(
cat >> ${INSTALL_DIR}${PREFIX}/doc/${PKG}-${VER}/MANIFEST <<EOF
${FILES}
@ -78,8 +78,8 @@ strip()
{
(
cd ${INSTALL_DIR} &&
find . -name "*.dll" | xargs strip >/dev/null 2>&1
find . -name "*.exe" | xargs strip >/dev/null 2>&1
/usr/bin/find . -name "*.dll" | xargs strip >/dev/null 2>&1
/usr/bin/find . -name "*.exe" | xargs strip >/dev/null 2>&1
true
)
}

View File

@ -16,14 +16,15 @@ SELF_DIR=`cd \`echo "$0" | sed -n '/\//{s/\/[^\/]*$//;p;}'\`;pwd`
WriteREADME()
{
CYGVERSION=`uname -r`
cat > ${PKG}-${VER}/CYGWIN-PATCHES/cmake.README <<EOF
cmake
--------------------------------------
Runtime requirements:
cygwin-1.3.5 or newer
cygwin-${CYGVERSION} or newer
Build requirements
cygwin-1.3.5 or newer
cygwin-${CYGVERSION} or newer
make
Canonical homepage:
@ -84,7 +85,6 @@ SourcePatch()
mkdir -p ${PKG}-${VER}/CYGWIN-PATCHES &&
WriteREADME &&
WriteSetupHint &&
cp ${PKG}-${VER}/Utilities/setup.hint ${PKG}-${VER}/CYGWIN-PATCHES &&
(diff -urN "${PKG}-${VER}-orig" "${PKG}-${VER}" > "${FULLPKG}.patch")
rm -rf ${PKG}-${VER} ${PKG}-${VER}-orig
}