1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126
|
#!/bin/sh -ex
# script to automate building of 030_autotools patch file
export QUILT_PATCHES=$PWD/debian/patches
if ! quilt applied | grep 030_autotools
then
: > debian/patches/030_autotools
quilt push 030_autotools
else
quilt pop 030_autotools || true
fi
if [ `quilt top` != "030_autotools" ]
then
echo "Top patch is not 030_autotools" >&2
exit 1
fi
set +e
quilt add cf/*
quilt add acinclude.m4
quilt add aclocal.m4
quilt add cf/ltversion.m4
quilt add cf/libtool.m4
quilt add cf/ltoptions.m4
quilt add cf/ltsugar.m4
quilt add cf/ltversion.m4
quilt add cf/lt~obsolete.m4
quilt add compile
quilt add config.guess
quilt add config.sub
quilt add configure
quilt add depcomp
quilt add include/config.h.in
quilt add install-sh
quilt add ltmain.sh
quilt add missing
quilt add ylwrap
quilt add admin/Makefile.in
quilt add base/Makefile.in
quilt add appl/afsutil/Makefile.in
quilt add appl/dceutils/Makefile.in
quilt add appl/ftp/common/Makefile.in
quilt add appl/ftp/ftpd/Makefile.in
quilt add appl/ftp/ftp/Makefile.in
quilt add appl/ftp/Makefile.in
quilt add appl/gssmask/Makefile.in
quilt add appl/kf/Makefile.in
quilt add appl/kx/Makefile.in
quilt add appl/login/Makefile.in
quilt add appl/Makefile.in
quilt add appl/otp/Makefile.in
quilt add appl/popper/Makefile.in
quilt add appl/push/Makefile.in
quilt add appl/rcp/Makefile.in
quilt add appl/rsh/Makefile.in
quilt add appl/su/Makefile.in
quilt add appl/telnet/libtelnet/Makefile.in
quilt add appl/telnet/Makefile.in
quilt add appl/telnet/telnetd/Makefile.in
quilt add appl/telnet/telnet/Makefile.in
quilt add appl/test/Makefile.in
quilt add appl/xnlock/Makefile.in
quilt add configure.ac
quilt add doc/Makefile.in
quilt add etc/Makefile.in
quilt add include/config.h.in
quilt add include/gssapi/Makefile.in
quilt add include/hcrypto/Makefile.in
quilt add include/kadm5/Makefile.in
quilt add include/Makefile.in
quilt add kadmin/Makefile.in
quilt add kcm/Makefile.in
quilt add kdc/Makefile.in
quilt add kpasswd/Makefile.in
quilt add kuser/Makefile.in
quilt add lib/asn1/Makefile.in
quilt add lib/auth/afskauthlib/Makefile.in
quilt add lib/auth/Makefile.in
quilt add lib/auth/pam/Makefile.in
quilt add lib/auth/sia/Makefile.in
quilt add lib/com_err/Makefile.in
quilt add lib/editline/Makefile.in
quilt add lib/gssapi/Makefile.in
quilt add lib/hcrypto/Makefile.in
quilt add lib/hdb/Makefile.in
quilt add lib/hx509/Makefile.in
quilt add lib/ipc/Makefile.in
quilt add lib/kadm5/Makefile.in
quilt add lib/kafs/Makefile.in
quilt add lib/kdfs/Makefile.in
quilt add lib/krb5/Makefile.in
quilt add lib/Makefile.in
quilt add lib/ntlm/Makefile.in
quilt add lib/otp/Makefile.in
quilt add lib/roken/Makefile.in
quilt add lib/sl/Makefile.in
quilt add lib/sqlite/Makefile.in
quilt add lib/vers/Makefile.in
quilt add lib/wind/Makefile.in
quilt add Makefile.in
quilt add packages/mac/Makefile.in
quilt add packages/Makefile.in
quilt add po/Makefile.in
quilt add tests/bin/Makefile.in
quilt add tests/can/Makefile.in
quilt add tests/db/Makefile.in
quilt add tests/gss/Makefile.in
quilt add tests/java/Makefile.in
quilt add tests/kdc/Makefile.in
quilt add tests/ldap/Makefile.in
quilt add tests/Makefile.in
quilt add tests/plugin/Makefile.in
quilt add tools/Makefile.in
set -e
autoreconf --install
libtoolize -c -f
automake -a || true
quilt refresh
|