This is the mail archive of the libc-hacker@sources.redhat.com mailing list for the glibc project.
Note that libc-hacker is a closed list. You may look at the archives of this list, but subscription and posting are not open.
| Index Nav: | [Date Index] [Subject Index] [Author Index] [Thread Index] | |
|---|---|---|
| Message Nav: | [Date Prev] [Date Next] | [Thread Prev] [Thread Next] |
| Other format: | [Raw text] | |
Hi!
Current diff doesn't like -pu0:
diff: `-0' option is obsolete; use `-U 0'
diff: Try `diff --help' for more information.
2004-07-05 Jakub Jelinek <jakub@redhat.com>
* Makerules (check-abi): Use diff -p -U 0 instead of diff -pu0.
--- libc/Makerules.jj 2004-04-13 10:42:50.000000000 +0200
+++ libc/Makerules 2004-07-05 14:50:46.602142300 +0200
@@ -1191,7 +1191,7 @@ define check-abi
LC_ALL=C \
$(AWK) -f $< -v 'config=$(check-abi-config)' \
$(filter %.abilist,$^) \
- | { diff -pu0 - $(filter %.symlist,$^) $(check-abi-warn) ; }
+ | { diff -p -U 0 - $(filter %.symlist,$^) $(check-abi-warn) ; }
endef
ifeq ($(enable-check-abi),warn)
check-abi-warn = || echo '*** WARNING: $*.so failed ABI check'
Jakub
| Index Nav: | [Date Index] [Subject Index] [Author Index] [Thread Index] | |
|---|---|---|
| Message Nav: | [Date Prev] [Date Next] | [Thread Prev] [Thread Next] |