From 89569e591624ed7656bf992578ed1e5f1e5121d9 Mon Sep 17 00:00:00 2001 From: Daniil Gentili Date: Tue, 29 Oct 2019 13:59:06 +0100 Subject: [PATCH] Don't be so verbose --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 726f1de..6cbcd63 100644 --- a/Makefile +++ b/Makefile @@ -128,7 +128,7 @@ OBJECTS = $(OBJECTS_CC:%.c=%.o) all: ${TGVOIP} ${OBJECTS} ${EXTENSION} ${TGVOIP}: - cd libtgvoip && autoreconf -vfi && ${MKDIR} build && cd build && bash -x ../configure --enable-desktop-dsp --enable-opus-music --enable-audio-callback --prefix=/usr && make -j$(shell nproc) && sudo make install && cd ../.. + cd libtgvoip && autoreconf -vfi && ${MKDIR} build && cd build && ../configure --enable-desktop-dsp --enable-opus-music --enable-audio-callback --prefix=/usr && make -j$(shell nproc) && sudo make install && cd ../.. ${EXTENSION}: ${OBJECTS} ${CXX} -o $@ ${OBJECTS} ${LFLAGS}