Remove bashisme and don't echo executed command.
authorRomain Forlot <romain.forlot@iot.bzh>
Tue, 9 May 2017 11:09:26 +0000 (13:09 +0200)
committerRomain Forlot <romain.forlot@iot.bzh>
Tue, 9 May 2017 11:09:26 +0000 (13:09 +0200)
Change-Id: Ifca91194ce89b3264cbb417ccfd60981bcfc246d
Signed-off-by: Romain Forlot <romain.forlot@iot.bzh>
reference/AGLbuild

index ccbc28b..4cfd53a 100755 (executable)
@@ -27,15 +27,19 @@ clean:
        @([ -d ${BUILD_DIR} ] && make -C ${BUILD_DIR} clean) || echo Nothing to clean
 
 mrproper:
-       rm -rf ${BUILD_DIR}
+       @rm -rf ${BUILD_DIR}
 
 build:  ${BUILD_DIR}/Makefile
-       cmake --build ${BUILD_DIR} --target all
+       @cmake --build ${BUILD_DIR} --target all
 
 package: config.xml.in icon.png.in build | $(PKG_FILELIST)
-       mkdir -p ${BUILD_DIR}/$@/{bin,etc,lib,htdocs,data}
-       cmake --build ${BUILD_DIR} --target widget
+       @mkdir -p ${BUILD_DIR}/$@/bin
+       @mkdir -p ${BUILD_DIR}/$@/etc
+       @mkdir -p ${BUILD_DIR}/$@/lib
+       @mkdir -p ${BUILD_DIR}/$@/htdocs
+       @mkdir -p ${BUILD_DIR}/$@/data
+       @cmake --build ${BUILD_DIR} --target widget
 
 ${BUILD_DIR}/Makefile:
        @[ -d ${BUILD_DIR} ] || mkdir -p ${BUILD_DIR}
-       @[ -f ${BUILD_DIR}/Makefile ] || (cd ${BUILD_DIR} && cmake ${CMAKE_OPTS} ..)
\ No newline at end of file
+       @[ -f ${BUILD_DIR}/Makefile ] || (cd ${BUILD_DIR} && cmake ${CMAKE_OPTS} ..)