diff options
author | André Glüpker <git@wgmd.de> | 2015-10-07 10:31:49 +0200 |
---|---|---|
committer | dequis <dx@dxzone.com.ar> | 2015-10-08 02:09:12 -0300 |
commit | 872e0176b87ad859a66a1ccbe4f07211ccddb11f (patch) | |
tree | 2fc4cdd2f42c151671676d3aadd2349bc6a1434b | |
parent | 35a75251955f2602722d77d862480f45523df35c (diff) |
Add missing space in configure
-rwxr-xr-x | configure | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -677,15 +677,15 @@ fi if [ "$otr" = 1 ]; then # BI == built-in echo '#define OTR_BI' >> config.h - echo "EFLAGS+=$($PKG_CONFIG --libs libotr)$(libgcrypt-config --libs)" >> Makefile.settings - echo "CFLAGS+=$($PKG_CONFIG --cflags libotr)$(libgcrypt-config --cflags)" >> Makefile.settings + echo "EFLAGS+=$($PKG_CONFIG --libs libotr) $(libgcrypt-config --libs)" >> Makefile.settings + echo "CFLAGS+=$($PKG_CONFIG --cflags libotr) $(libgcrypt-config --cflags)" >> Makefile.settings echo 'OTR_BI=otr.o' >> Makefile.settings elif [ "$otr" = "plugin" ]; then # for some mysterious reason beyond the comprehension of my mortal mind, # the libgcrypt flags aren't needed when building as plugin. add them anyway. echo '#define OTR_PI' >> config.h - echo "OTRFLAGS=$($PKG_CONFIG --libs libotr)$(libgcrypt-config --libs)" >> Makefile.settings - echo "CFLAGS+=$($PKG_CONFIG --cflags libotr)$(libgcrypt-config --cflags)" >> Makefile.settings + echo "OTRFLAGS=$($PKG_CONFIG --libs libotr) $(libgcrypt-config --libs)" >> Makefile.settings + echo "CFLAGS+=$($PKG_CONFIG --cflags libotr) $(libgcrypt-config --cflags)" >> Makefile.settings echo 'OTR_PI=otr.so' >> Makefile.settings fi |