libewf: Fix compile.sh script, don't be verbose by default
This commit is contained in:
parent
e9052e9258
commit
903d732fb1
2 changed files with 4 additions and 2 deletions
|
@ -175,8 +175,8 @@ CONFIGUREOPT="$CONFIGUREOPT --with-ewf-lib=${PWDSRC}/libewf-${VER_LIBEWF}/libewf
|
||||||
|
|
||||||
if [ ! -e $compiledir/libewf-$VER_LIBEWF/configure ];
|
if [ ! -e $compiledir/libewf-$VER_LIBEWF/configure ];
|
||||||
then
|
then
|
||||||
if [ ! -e libewf-$VER_LIBEWF.tar.gz -a ! -e libewf-alpha -$VER_LIBEWF.tar.gz -a ! -e libewf-beta-$VER_LIBEWF.tar.gz ];
|
if [ ! -e libewf-$VER_LIBEWF.tar.gz -a ! -e libewf-alpha-$VER_LIBEWF.tar.gz -a ! -e libewf-beta-$VER_LIBEWF.tar.gz ];
|
||||||
then
|
then
|
||||||
$LYNX "http://sourceforge.net/project/platformdownload.php?group_id=167783"
|
$LYNX "http://sourceforge.net/project/platformdownload.php?group_id=167783"
|
||||||
fi
|
fi
|
||||||
if [ -e libewf-$VER_LIBEWF.tar.gz ];
|
if [ -e libewf-$VER_LIBEWF.tar.gz ];
|
||||||
|
|
|
@ -86,7 +86,9 @@ disk_t *fewf_init(const char *device, const arch_fnct_t *arch, const int mode)
|
||||||
#ifdef HAVE_GLOB_H
|
#ifdef HAVE_GLOB_H
|
||||||
glob_t globbuf;
|
glob_t globbuf;
|
||||||
#endif
|
#endif
|
||||||
|
#ifdef DEBUG_EWF
|
||||||
libewf_set_notify_values( stderr, 1 );
|
libewf_set_notify_values( stderr, 1 );
|
||||||
|
#endif
|
||||||
data=(struct info_fewf_struct *)MALLOC(sizeof(*data));
|
data=(struct info_fewf_struct *)MALLOC(sizeof(*data));
|
||||||
data->offset=0;
|
data->offset=0;
|
||||||
strncpy(data->file_name,device,sizeof(data->file_name));
|
strncpy(data->file_name,device,sizeof(data->file_name));
|
||||||
|
|
Loading…
Reference in a new issue