Browse Source

* fixed uclibc/conffiles-functions.in's conffiles_loop() to do the requested

number of loops and not one less.


git-svn-id: svn://svn.opensde.net/opensde/package/trunk@20528 10447126-35f2-4685-b0cf-6dd780d3921f
early
Alejandro Mery 18 years ago
parent
commit
3b5966acf4
  1. 2
      base/uclibc/conffiles-functions.in

2
base/uclibc/conffiles-functions.in

@ -60,7 +60,7 @@ conffiles_loop() {
cp -v .config .config.1
j=2 ; for (( i=1 ; i<loops ; i++, j++ )) {
j=2 ; for (( i=0 ; i<loops ; i++, j++ )) {
conffiles_apply > .config.$j
cp -v .config.$j .config

Loading…
Cancel
Save