Browse Source

do not enforce uudecode availability as raw tarballs introduced a month ago do no longer require it

master
Thomas Lotterer 22 years ago committed by Ralf S. Engelschall
parent
commit
57996caa07
  1. 1
      openpkg/HISTORY
  2. 16
      openpkg/openpkg.boot
  3. 2
      openpkg/openpkg.spec

1
openpkg/HISTORY

@ -2,6 +2,7 @@
2003
====
20031129 do not enforce uudecode availability as raw tarballs introduced a month ago do no longer require it
20031127 only allow exact section command matches in rc
20031124 upgrade to zlib 1.2.1
20031121 rc manual page additions

16
openpkg/openpkg.boot

@ -252,22 +252,6 @@ export PATH
umask 022
unset ls rm mv cp sed grep awk >/dev/null 2>&1 || true
# find reasonable UUENCODE
l_uuencode=''
for t in guuencode uuencode; do
for p in `IFS=":"; echo . $PATH`; do
if [ -f "$p/$t" ]; then
l_uuencode="$p/$t"
break
fi
done
[ ".$l_uuencode" != . ] && break
done
if [ ".$l_uuencode" = . ]; then
echo "$0:FAILED: required UUENCODE not found"
exit 1
fi
# find reasonable TAR
l_tar=''
for t in gtar tar; do

2
openpkg/openpkg.spec

@ -39,7 +39,7 @@
# o any cc(1)
# the package version/release
%define V_openpkg 20031127
%define V_openpkg 20031129
# the used software versions
%define V_rpm 4.2.1

Loading…
Cancel
Save