Browse Source

diglib: use cmp for byte-wise comparison of portability test (diff is ASCII only on AIX)

git-svn-id: https://svn.osgeo.org/grass/grass/trunk@56674 15284696-431f-4ddb-bdfa-cd5b030d7da7
Markus Neteler 12 years ago
parent
commit
a3a7443662
1 changed files with 1 additions and 1 deletions
  1. 1 1
      lib/vector/diglib/Makefile

+ 1 - 1
lib/vector/diglib/Makefile

@@ -26,7 +26,7 @@ ifeq ($(strip $(CROSS_COMPILING)),)
 endif
 
 test: $(OBJDIR)/test.tmp $(TESTFILE)
-	diff $(OBJDIR)/test.tmp $(TESTFILE)
+	cmp $(OBJDIR)/test.tmp $(TESTFILE)
 
 $(OBJDIR)/test.tmp: $(OBJDIR)/test$(EXE)
 	cd $(OBJDIR) && $(call run_grass,./test)