From 5bcbb166eb8e950d98d1aba0440e5f35bedcb8b0 Mon Sep 17 00:00:00 2001 From: Pedro Giffuni Date: Sat, 24 Dec 2016 15:48:25 +0000 Subject: Add some "Revision" svn keywords. Revisions were used within the tree, perhaps inherited by previous CVS/Subversion usage. Re-use them now since we have been lazy about updating them manually and because they can be useful for bug reports. --- postprocess/packconfig/packconfig.pl | 2 +- sal/inc/rtl/cipher.h | 2 +- sal/inc/rtl/crc.h | 2 +- sal/inc/rtl/digest.h | 2 +- sal/inc/rtl/random.h | 2 +- sal/rtl/source/cipher.c | 2 +- sal/rtl/source/crc.c | 2 +- sal/rtl/source/digest.c | 2 +- sal/rtl/source/random.c | 2 +- solenv/bin/build.pl | 2 +- solenv/bin/deliver.pl | 2 +- solenv/bin/packimages.pl | 2 +- solenv/bin/zipdep.pl | 2 +- solenv/inc/libs.mk | 2 +- store/inc/store/store.h | 2 +- store/inc/store/types.h | 2 +- store/source/storbase.hxx | 2 +- store/source/storcach.hxx | 2 +- store/source/storlckb.hxx | 2 +- store/source/storpage.hxx | 2 +- store/source/stortree.hxx | 2 +- store/workben/t_store.cxx | 2 +- 22 files changed, 22 insertions(+), 22 deletions(-) diff --git a/postprocess/packconfig/packconfig.pl b/postprocess/packconfig/packconfig.pl index a95e84b8d93d..37a7b0dac866 100755 --- a/postprocess/packconfig/packconfig.pl +++ b/postprocess/packconfig/packconfig.pl @@ -48,7 +48,7 @@ my $do_rebuild = 0; # is rebuilding zipfile required? ( my $script_name = $0 ) =~ s/^.*\b(\w+)\.pl$/$1/; my $script_rev; -my $id_str = ' $Revision: 1.3.24.2 $ '; +my $id_str = ' $Revision$ '; $id_str =~ /Revision:\s+(\S+)\s+\$/ ? ($script_rev = $1) : ($script_rev = "-"); diff --git a/sal/inc/rtl/cipher.h b/sal/inc/rtl/cipher.h index 8ff185b77aa2..dd0458372ec5 100644 --- a/sal/inc/rtl/cipher.h +++ b/sal/inc/rtl/cipher.h @@ -22,7 +22,7 @@ #ifndef _RTL_CIPHER_H_ -#define _RTL_CIPHER_H_ "$Revision: 1.7 $" +#define _RTL_CIPHER_H_ "$Revision$" #include diff --git a/sal/inc/rtl/crc.h b/sal/inc/rtl/crc.h index 50c753008698..4d0e407a8fe9 100644 --- a/sal/inc/rtl/crc.h +++ b/sal/inc/rtl/crc.h @@ -22,7 +22,7 @@ #ifndef _RTL_CRC_H_ -#define _RTL_CRC_H_ "$Revision: 1.4 $" +#define _RTL_CRC_H_ "$Revision$" #include diff --git a/sal/inc/rtl/digest.h b/sal/inc/rtl/digest.h index 67ae11e704c3..fbf5c9d7ae91 100644 --- a/sal/inc/rtl/digest.h +++ b/sal/inc/rtl/digest.h @@ -22,7 +22,7 @@ #ifndef _RTL_DIGEST_H_ -#define _RTL_DIGEST_H_ "$Revision: 1.8 $" +#define _RTL_DIGEST_H_ "$Revision$" #include diff --git a/sal/inc/rtl/random.h b/sal/inc/rtl/random.h index 3ca3da896d6a..b4e21db67550 100644 --- a/sal/inc/rtl/random.h +++ b/sal/inc/rtl/random.h @@ -22,7 +22,7 @@ #ifndef _RTL_RANDOM_H_ -#define _RTL_RANDOM_H_ "$Revision: 1.7 $" +#define _RTL_RANDOM_H_ "$Revision$" #include diff --git a/sal/rtl/source/cipher.c b/sal/rtl/source/cipher.c index 65473cfe8249..521ec737ea70 100644 --- a/sal/rtl/source/cipher.c +++ b/sal/rtl/source/cipher.c @@ -21,7 +21,7 @@ -#define _RTL_CIPHER_C_ "$Revision: 1.5 $" +#define _RTL_CIPHER_C_ "$Revision$" #include #include diff --git a/sal/rtl/source/crc.c b/sal/rtl/source/crc.c index 3c77f52d57d3..3314b2ca19be 100644 --- a/sal/rtl/source/crc.c +++ b/sal/rtl/source/crc.c @@ -21,7 +21,7 @@ -#define _RTL_CRC_C_ "$Revision: 1.3 $" +#define _RTL_CRC_C_ "$Revision$" #include #include diff --git a/sal/rtl/source/digest.c b/sal/rtl/source/digest.c index fafec902ff03..5829e89bcd7f 100644 --- a/sal/rtl/source/digest.c +++ b/sal/rtl/source/digest.c @@ -21,7 +21,7 @@ -#define _RTL_DIGEST_C_ "$Revision: 1.9 $" +#define _RTL_DIGEST_C_ "$Revision$" #include #include diff --git a/sal/rtl/source/random.c b/sal/rtl/source/random.c index d967c63631a5..d248c10091c5 100644 --- a/sal/rtl/source/random.c +++ b/sal/rtl/source/random.c @@ -21,7 +21,7 @@ -#define _RTL_RANDOM_C_ "$Revision: 1.6 $" +#define _RTL_RANDOM_C_ "$Revision$" #include #include diff --git a/solenv/bin/build.pl b/solenv/bin/build.pl index c82b57c3912e..d0c4823935d4 100755 --- a/solenv/bin/build.pl +++ b/solenv/bin/build.pl @@ -69,7 +69,7 @@ #### script id ##### ( my $script_name = $0 ) =~ s/^.*\b(\w+)\.pl$/$1/; - my $id_str = ' $Revision: 275224 $ '; + my $id_str = ' $Revision$ '; my $script_rev = 0; $id_str =~ /Revision:\s+(\S+)\s+\$/ ? ($script_rev = $1) : ($script_rev = "-"); diff --git a/solenv/bin/deliver.pl b/solenv/bin/deliver.pl index 4341d88afd2f..aca476ef1307 100755 --- a/solenv/bin/deliver.pl +++ b/solenv/bin/deliver.pl @@ -39,7 +39,7 @@ use File::Spec; ( $script_name = $0 ) =~ s/^.*\b(\w+)\.pl$/$1/; -$id_str = ' $Revision: 275594 $ '; +$id_str = ' $Revision$ '; $id_str =~ /Revision:\s+(\S+)\s+\$/ ? ($script_rev = $1) : ($script_rev = "-"); diff --git a/solenv/bin/packimages.pl b/solenv/bin/packimages.pl index 1de1ea4e74ea..71ee1788e17d 100755 --- a/solenv/bin/packimages.pl +++ b/solenv/bin/packimages.pl @@ -56,7 +56,7 @@ my @custom_list; ( my $script_name = $0 ) =~ s/^.*\b(\w+)\.pl$/$1/; my $script_rev; -my $id_str = ' $Revision: 1.17 $ '; +my $id_str = ' $Revision$ '; $id_str =~ /Revision:\s+(\S+)\s+\$/ ? ($script_rev = $1) : ($script_rev = "-"); diff --git a/solenv/bin/zipdep.pl b/solenv/bin/zipdep.pl index afba7edd6013..077d33bf493a 100755 --- a/solenv/bin/zipdep.pl +++ b/solenv/bin/zipdep.pl @@ -33,7 +33,7 @@ use Cwd; ( $script_name = $0 ) =~ s/^.*\b(\w+)\.pl$/$1/; -$id_str = ' $Revision: 1.12 $ '; +$id_str = ' $Revision$ '; $id_str =~ /Revision:\s+(\S+)\s+\$/ ? ($script_rev = $1) : ($script_rev = "-"); diff --git a/solenv/inc/libs.mk b/solenv/inc/libs.mk index f9382be3bf39..7d12c791f524 100644 --- a/solenv/inc/libs.mk +++ b/solenv/inc/libs.mk @@ -19,7 +19,7 @@ # #************************************************************** -LIBSMKREV!:="$$Revision: 1.134.2.3 $$" +LIBSMKREV!:="$$Revision$$" .IF ("$(GUI)"=="UNX" || "$(COM)"=="GCC") diff --git a/store/inc/store/store.h b/store/inc/store/store.h index 1c5b55a27bd3..1cecdd8aa390 100644 --- a/store/inc/store/store.h +++ b/store/inc/store/store.h @@ -22,7 +22,7 @@ #ifndef _STORE_STORE_H_ -#define _STORE_STORE_H_ "$Revision: 1.6 $" +#define _STORE_STORE_H_ "$Revision$" #include diff --git a/store/inc/store/types.h b/store/inc/store/types.h index c3d13a58f758..a24ad8326318 100644 --- a/store/inc/store/types.h +++ b/store/inc/store/types.h @@ -22,7 +22,7 @@ #ifndef _STORE_TYPES_H_ -#define _STORE_TYPES_H_ "$Revision: 1.8 $" +#define _STORE_TYPES_H_ "$Revision$" #include #include diff --git a/store/source/storbase.hxx b/store/source/storbase.hxx index 7b807ae5501d..bd9f05a7aa90 100644 --- a/store/source/storbase.hxx +++ b/store/source/storbase.hxx @@ -22,7 +22,7 @@ #ifndef _STORE_STORBASE_HXX_ -#define _STORE_STORBASE_HXX_ "$Revision: 1.10.8.4 $" +#define _STORE_STORBASE_HXX_ "$Revision$" #include "sal/types.h" diff --git a/store/source/storcach.hxx b/store/source/storcach.hxx index 28d2953a7310..23ca9a55d988 100644 --- a/store/source/storcach.hxx +++ b/store/source/storcach.hxx @@ -22,7 +22,7 @@ #ifndef _STORE_STORCACH_HXX -#define _STORE_STORCACH_HXX "$Revision: 1.6.8.2 $" +#define _STORE_STORCACH_HXX "$Revision$" #include "sal/types.h" #include "rtl/ref.hxx" diff --git a/store/source/storlckb.hxx b/store/source/storlckb.hxx index a7e60267b473..87020d65c95c 100644 --- a/store/source/storlckb.hxx +++ b/store/source/storlckb.hxx @@ -22,7 +22,7 @@ #ifndef _STORE_STORLCKB_HXX_ -#define _STORE_STORLCKB_HXX_ "$Revision: 1.6.8.1 $" +#define _STORE_STORLCKB_HXX_ "$Revision$" #include "sal/types.h" diff --git a/store/source/storpage.hxx b/store/source/storpage.hxx index 941597bf8561..dd44f53655f3 100644 --- a/store/source/storpage.hxx +++ b/store/source/storpage.hxx @@ -22,7 +22,7 @@ #ifndef _STORE_STORPAGE_HXX_ -#define _STORE_STORPAGE_HXX_ "$Revision: 1.6.8.2 $" +#define _STORE_STORPAGE_HXX_ "$Revision$" #include "sal/types.h" diff --git a/store/source/stortree.hxx b/store/source/stortree.hxx index 4e14c493bac4..2c5a9c53b9b5 100644 --- a/store/source/stortree.hxx +++ b/store/source/stortree.hxx @@ -22,7 +22,7 @@ #ifndef _STORE_STORTREE_HXX -#define _STORE_STORTREE_HXX "$Revision: 1.6.8.2 $" +#define _STORE_STORTREE_HXX "$Revision$" #include "sal/types.h" diff --git a/store/workben/t_store.cxx b/store/workben/t_store.cxx index 27249877950f..46432c23f556 100644 --- a/store/workben/t_store.cxx +++ b/store/workben/t_store.cxx @@ -24,7 +24,7 @@ // MARKER(update_precomp.py): autogen include statement, do not remove #include "precompiled_store.hxx" -#define _T_STORE_CXX "$Revision: 1.7.8.2 $" +#define _T_STORE_CXX "$Revision$" #include #include #include -- cgit