From fc9af348b882e9758bcfbddde05e2733eddb794a Mon Sep 17 00:00:00 2001 From: graham.gower Date: Mon, 11 Jan 2010 23:52:48 -0500 Subject: Don't print an error if trying to write status file to a read only filesystem. git-svn-id: http://opkg.googlecode.com/svn/trunk@518 e8e0d7a0-c8d9-11dd-a880-a1081c7ac358 --- diff --git a/libopkg/opkg_conf.c b/libopkg/opkg_conf.c index 678f219..cd636f1 100644 --- a/libopkg/opkg_conf.c +++ b/libopkg/opkg_conf.c @@ -344,7 +344,7 @@ opkg_conf_write_status_files(void) dest = (pkg_dest_t *)iter->data; dest->status_fp = fopen(dest->status_file_name, "w"); - if (dest->status_fp == NULL) { + if (dest->status_fp == NULL && errno != EROFS) { opkg_perror(ERROR, "Can't open status file %s", dest->status_file_name); ret = -1; -- cgit v0.9.1