summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDanil Baturin <daniil@vyos.io>2021-10-30 07:19:38 -0400
committerDaniil Baturin <daniil@vyos.io>2021-10-30 07:23:00 -0400
commit0e2807a5fcc34160c77e57776f203b1774ee51b8 (patch)
tree8f86c724c1a8436c6caa27e6664c04ada90d295a
parentd70a3f5e86f37abe657c13d16ccc081832356d40 (diff)
downloadvyos-live-build-0e2807a5fcc34160c77e57776f203b1774ee51b8.tar.gz
vyos-live-build-0e2807a5fcc34160c77e57776f203b1774ee51b8.zip
Disable the check for bashisms for the time being
because Debian's own code isn't passing it
-rw-r--r--Makefile24
1 files changed, 12 insertions, 12 deletions
diff --git a/Makefile b/Makefile
index d1ef2b078..29fe0e54c 100644
--- a/Makefile
+++ b/Makefile
@@ -19,18 +19,18 @@ test:
@echo " done."
- @echo -n "Checking for bashisms"
-
- @if [ -x /usr/bin/checkbashisms ]; \
- then \
- for SCRIPT in $(SCRIPTS); \
- do \
- checkbashisms -f -x $${SCRIPT}; \
- echo -n "."; \
- done; \
- else \
- echo "WARNING: Skipping bashism test - you need to install devscripts."; \
- fi
+ #@echo -n "Checking for bashisms"
+
+ #@if [ -x /usr/bin/checkbashisms ]; \
+ #then \
+ # for SCRIPT in $(SCRIPTS); \
+ # do \
+ # checkbashisms -f -x $${SCRIPT}; \
+ # echo -n "."; \
+ # done; \
+ #else \
+ # echo "WARNING: Skipping bashism test - you need to install devscripts."; \
+ #fi
@echo " done."