Changeset 04dc563 for configure


Ignore:
Timestamp:
2010-06-05T10:32:02Z (14 years ago)
Author:
Wilmer van der Gaast <wilmer@…>
Branches:
master
Children:
095a5f0
Parents:
4af3050
Message:

A few more configure script tweaks: Don't enable libpurple by default
anymore (in preparation for a merge), and limit the directory replication
stuff.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • configure

    r4af3050 r04dc563  
    2727yahoo=1
    2828twitter=1
    29 purple=1
     29purple=0
    3030
    3131debug=0
     
    129129        echo "configure script run from a different directory. Will create some symlinks..."
    130130        if [ ! -e Makefile -o -L Makefile ]; then
    131                 mkdir -p $(cd "$srcdir"; find . -type d)
     131                COPYDIRS="doc lib protocols tests utils"
     132                mkdir -p $(cd "$srcdir"; find $COPYDIRS -type d)
    132133                find . -name Makefile -type l -print0 | xargs -0 rm 2> /dev/null
    133134                dst="$PWD"
    134135                cd "$srcdir"
    135                 for i in $(find . -name Makefile); do
     136                for i in $(find . -name Makefile -type f); do
    136137                        ln -s "$PWD${i#.}" "$dst/$i";
    137138                done
Note: See TracChangeset for help on using the changeset viewer.