Ignore:
Timestamp:
2013-06-27T16:35:33+12:00 (11 years ago)
Author:
ak19
Message:

When running diffcol on the backdrop model collection, none of the images were being generated. The imagemagick convert binary is looking for a library called libjpeg.so.62, which wasn't present in the lib folder of our own imagemagick (the system imagemagick on the CentOS machine where the model collection had been built had this library, which is why it worked there). Cascade-make now creates a softlink to the existing libjpeg.so (version libjpeg.so.8) called libjpeg.so.62.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • gs2-extensions/imagemagick/trunk/src/CASCADE-MAKE.sh

    r27618 r27711  
    2525
    2626    # fix up symbolic links that use absolute paths to use rel paths instead
     27    # also create a symbolic link from existing libjpeg.so.62 to libjpeg.so.8
    2728    cd linux/bin
    2829    /bin/rm -f bzcmp
     
    3334    ln -s bzgrep bzegrep
    3435    ln -s bzgrep bzfgrep
    35     ln -s bzmore bzless
     36    ln -s bzmore bzless   
     37    cd ../lib
     38    ln -s libjpeg.so.8 libjpeg.so.62
    3639    cd ../..
    37 
    3840  default_toplevel_make_dist $GSDLOS
    3941fi
Note: See TracChangeset for help on using the changeset viewer.