diff options
author | Adam Jackson <ajax@redhat.com> | 2018-02-01 15:07:35 -0500 |
---|---|---|
committer | Adam Jackson <ajax@redhat.com> | 2018-02-01 15:07:35 -0500 |
commit | 866582439ac2410e5ae98c3387718b7a28e04917 (patch) | |
tree | 1b23e82ad57ad46edf7a227aff0fe544efcec0cc /merge-makefile | |
parent | 193b75db8c1aa9d91d079901d7da98ec72810378 (diff) |
Move the migration scripts and data to the attic
Signed-off-by: Adam Jackson <ajax@redhat.com>
Diffstat (limited to 'merge-makefile')
-rw-r--r-- | merge-makefile | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/merge-makefile b/merge-makefile deleted file mode 100644 index 9bdba77..0000000 --- a/merge-makefile +++ /dev/null @@ -1,19 +0,0 @@ -#!/bin/sh - -for i in `cat protos`; do - sed -e "s/^pkgconfig/${i}pkgconfig/" \ - -e "s/EXTRA_DIST/${i}_EXTRA_DIST/" \ - -e 's/#.*$//' \ - -e '/MAINTAINERCLEANFILES/d' \ - -e '/PHONY/d' \ - -e '/SUBDIRS=specs/d' \ - -e '/ChangeLog/d' \ - -e '/CHANGELOG/d' \ - -e '/INSTALL/d' \ - -e '/dist-hook/d' \ - $i/Makefile.am -done | cat -s | - awk '/dist_doc_DATA/ { doc[ndoc++] = $3; } - { print $0 } - END { print "SUBDIRS=specs"; print; print "dist_doc_DATA = \\"; for (i in doc) printf "\t%s \\\n", doc[i]; }' - |