summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFrancois-Xavier Le Bail <devel.fx.lebail@orange.fr>2023-01-31 11:00:31 +0100
committerFrancois-Xavier Le Bail <devel.fx.lebail@orange.fr>2023-01-31 11:00:31 +0100
commitd706a4f983316c40e1458f96c034c8f1c1401265 (patch)
tree234263c32036bdde298268b9a97e4022191b71cd
parent17ff63e88ea99112a905eefc6f862dac20de09e1 (diff)
downloadlibpcap-d706a4f983316c40e1458f96c034c8f1c1401265.tar.gz
Makefile.in: Update a test for better portability
This change allows to avoid an error on some OS, e.g. SunOS 5.10, like: sh: !: not found
-rw-r--r--Makefile.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.in b/Makefile.in
index d3ab8d04..8319ee1e 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -846,7 +846,7 @@ tags: $(TAGFILES)
#
releasetar:
@TAG=$(PROG)-`cat VERSION` && \
- if ! [ -d .git ]; then echo 'Not in a git clone, stop.'; exit 1; fi && \
+ if [ ! -d .git ]; then echo 'Not in a git clone, stop.'; exit 1; fi && \
TMPTESTFILE=`mktemp -t tmptestfile_XXXXXXXX` && \
rm -f "$$TMPTESTFILE" && \
AUTORECONF_DIR=`dirname "$$TMPTESTFILE"`/"$(PROG)"_build_autoreconf_$$$$ && \