Changeset 872e017 for configure


Ignore:
Timestamp:
2015-10-08T05:09:12Z (9 years ago)
Author:
dequis <dx@…>
Branches:
master
Children:
098b430
Parents:
35a7525
git-author:
André Glüpker <git@…> (07-10-15 08:31:49)
git-committer:
dequis <dx@…> (08-10-15 05:09:12)
Message:

Add missing space in configure

File:
1 edited

Legend:

Unmodified
Added
Removed
  • configure

    r35a7525 r872e017  
    678678        # BI == built-in
    679679        echo '#define OTR_BI' >> config.h
    680         echo "EFLAGS+=$($PKG_CONFIG --libs libotr)$(libgcrypt-config --libs)" >> Makefile.settings
    681         echo "CFLAGS+=$($PKG_CONFIG --cflags libotr)$(libgcrypt-config --cflags)" >> Makefile.settings
     680        echo "EFLAGS+=$($PKG_CONFIG --libs libotr) $(libgcrypt-config --libs)" >> Makefile.settings
     681        echo "CFLAGS+=$($PKG_CONFIG --cflags libotr) $(libgcrypt-config --cflags)" >> Makefile.settings
    682682        echo 'OTR_BI=otr.o' >> Makefile.settings
    683683elif [ "$otr" = "plugin" ]; then
     
    685685        # the libgcrypt flags aren't needed when building as plugin. add them anyway.
    686686        echo '#define OTR_PI' >> config.h
    687         echo "OTRFLAGS=$($PKG_CONFIG --libs libotr)$(libgcrypt-config --libs)" >> Makefile.settings
    688         echo "CFLAGS+=$($PKG_CONFIG --cflags libotr)$(libgcrypt-config --cflags)" >> Makefile.settings
     687        echo "OTRFLAGS=$($PKG_CONFIG --libs libotr) $(libgcrypt-config --libs)" >> Makefile.settings
     688        echo "CFLAGS+=$($PKG_CONFIG --cflags libotr) $(libgcrypt-config --cflags)" >> Makefile.settings
    689689        echo 'OTR_PI=otr.so' >> Makefile.settings
    690690fi
Note: See TracChangeset for help on using the changeset viewer.