Browse Source

fixed linux24-src for treever non-numeric content (e.g. linux24benh-src)

git-svn-id: http://www.rocklinux.org/svn/rock-linux/trunk@1365 c5f82cb5-29bc-0310-9cd0-bff59a50e3bc
rocklinux
Rene Rebe 21 years ago
parent
commit
a72bbbfe67
2 changed files with 3 additions and 3 deletions
  1. +1
    -1
      Documentation/Developers/CHANGELOG-RENE
  2. +2
    -2
      package/base/linux24-src/linux24-src.conf

+ 1
- 1
Documentation/Developers/CHANGELOG-RENE

@ -15,7 +15,7 @@
added new lilo config optionsm, added stone to the
2nd_stage_small incl. further space optimizations, cleanup
of some stone modules and a shell gasgui implementation
- fixed linux24-src for treever non-numeric content (e.g. linux24benh-src)
*) 2003-09-07 (2.0.0-rc1 - 2.0.0-rc2)

+ 2
- 2
package/base/linux24-src/linux24-src.conf

@ -52,8 +52,8 @@ main_lx_src() {
cp -v .config_modules ../linux$treever-patches/config_modules.txt
# can fail in stage 0-1 ...
if [ $stagelevel -gt 1 -a $treever -le 24 ] ; then
echo "Creating dependencies ..."
if [ $stagelevel -gt 1 ] && [[ $treever = 24* ]] ; then
echo "Creating dependencies (e.g. for versioned symbols) ..."
eval $MAKE dep-files
fi

Loading…
Cancel
Save