Browse Source

opkg: the PKG_UPGRADE env was not set properly

Signed-off-by: John Crispin <[email protected]>

SVN-Revision: 43493
John Crispin 11 years ago
parent
commit
5698e62ecb
1 changed files with 2 additions and 2 deletions
  1. 2 2
      package/system/opkg/patches/110-upgrade.patch

+ 2 - 2
package/system/opkg/patches/110-upgrade.patch

@@ -24,9 +24,9 @@ Index: opkg-9c97d5ecd795709c8584e972bfdf3aee3a5b846d/libopkg/pkg.c
  	    pkg->dest ? pkg->dest->root_dir : conf->default_dest->root_dir, 1);
  
 +	if (pkg->is_upgrade)
-+		setenv("PKG_UPGRADE", "1", 0);
++		setenv("PKG_UPGRADE", "1", 1);
 +	else
-+		setenv("PKG_UPGRADE", "0", 0);
++		setenv("PKG_UPGRADE", "0", 1);
 +
 +
       if (! file_exists(path)) {