diff options
author | Alexey Neyman <stilor@att.net> | 2018-04-10 21:29:29 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-04-10 21:29:29 -0700 |
commit | 1b18fd6bdd0c4e1b4ade5d0cb02eba5f2d1f78db (patch) | |
tree | 49fbd44324eb8b4a0893be30d63376548b3ef44e /samples/samples.mk | |
parent | ffc638142d8bb5d70204047a7bd3bdd34b127d85 (diff) | |
parent | b94dfcd59f6d342cd975e4407c0b2ab7acbb641a (diff) | |
download | crosstool-ng-1b18fd6bdd0c4e1b4ade5d0cb02eba5f2d1f78db.tar.gz crosstool-ng-1b18fd6bdd0c4e1b4ade5d0cb02eba5f2d1f78db.tar.bz2 crosstool-ng-1b18fd6bdd0c4e1b4ade5d0cb02eba5f2d1f78db.zip |
Merge pull request #924 from tofutim/feature/fixchecksamps
fix deprecated diff option
Diffstat (limited to 'samples/samples.mk')
-rw-r--r-- | samples/samples.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/samples/samples.mk b/samples/samples.mk index aafac488..7b356dd2 100644 --- a/samples/samples.mk +++ b/samples/samples.mk @@ -100,7 +100,7 @@ $(patsubst %,check-%,$(CT_SAMPLES)): check-%: mv .defconfig "$${CT_NG_SAMPLE}"; \ else \ echo "$* needs update:"; \ - diff -du0 "$${CT_NG_SAMPLE}" .defconfig |tail -n +4; \ + diff -d -U 0 "$${CT_NG_SAMPLE}" .defconfig |tail -n +4; \ fi; \ fi @rm -f .config.sample* .defconfig |