2
0
mirror of https://github.com/sudo-project/sudo.git synced 2025-08-22 01:49:11 +00:00

Add back "dist" target, this time using a MANIFEST file

This commit is contained in:
Todd C. Miller 2010-04-23 23:15:31 -04:00
parent 6b63751082
commit 1b6f3fda25
2 changed files with 205 additions and 0 deletions

192
MANIFEST Normal file
View File

@ -0,0 +1,192 @@
ChangeLog
INSTALL
INSTALL.configure
MANIFEST
Makefile.in
README
README.LDAP
WHATSNEW
aclocal.m4
acsite.m4
compat/Makefile.in
compat/charclass.h
compat/closefrom.c
compat/fnmatch.c
compat/fnmatch.h
compat/getcwd.c
compat/getgrouplist.c
compat/getline.c
compat/getprogname.c
compat/glob.c
compat/glob.h
compat/isblank.c
compat/memrchr.c
compat/mksiglist.c
compat/mksiglist.h
compat/mkstemp.c
compat/nanosleep.c
compat/sigaction.c
compat/siglist.in
compat/snprintf.c
compat/strcasecmp.c
compat/strerror.c
compat/strlcat.c
compat/strlcpy.c
compat/strsignal.c
compat/timespec.h
compat/utime.h
compat/utimes.c
config.guess
config.h.in
config.sub
configure
configure.in
doc/HISTORY
doc/LICENSE
doc/Makefile.in
doc/PORTING
doc/TROUBLESHOOTING
doc/UPGRADE
doc/sample.pam
doc/sample.sudoers
doc/sample.syslog.conf
doc/schema.ActiveDirectory
doc/schema.OpenLDAP
doc/schema.iPlanet
doc/sudo.cat
doc/sudo.man.in
doc/sudo.man.pl
doc/sudo.pod
doc/sudo_plugin.cat
doc/sudo_plugin.man.in
doc/sudo_plugin.pod
doc/sudoers.cat
doc/sudoers.ldap.cat
doc/sudoers.ldap.man.in
doc/sudoers.ldap.pod
doc/sudoers.man.in
doc/sudoers.man.pl
doc/sudoers.pod
doc/sudoreplay.cat
doc/sudoreplay.man.in
doc/sudoreplay.pod
doc/visudo.cat
doc/visudo.man.in
doc/visudo.pod
include/alloc.h
include/compat.h
include/error.h
include/fileops.h
include/lbuf.h
include/list.h
include/missing.h
include/sudo_plugin.h
indent.pro
install-sh
ltmain.sh
mkinstalldirs
pathnames.h.in
plugins/sample/Makefile.in
plugins/sample/sample_plugin.c
plugins/sudoers/Makefile.in
plugins/sudoers/aixcrypt.exp
plugins/sudoers/alias.c
plugins/sudoers/auth/API
plugins/sudoers/auth/afs.c
plugins/sudoers/auth/aix_auth.c
plugins/sudoers/auth/bsdauth.c
plugins/sudoers/auth/dce.c
plugins/sudoers/auth/fwtk.c
plugins/sudoers/auth/kerb4.c
plugins/sudoers/auth/kerb5.c
plugins/sudoers/auth/pam.c
plugins/sudoers/auth/passwd.c
plugins/sudoers/auth/rfc1938.c
plugins/sudoers/auth/secureware.c
plugins/sudoers/auth/securid.c
plugins/sudoers/auth/securid5.c
plugins/sudoers/auth/sia.c
plugins/sudoers/auth/sudo_auth.c
plugins/sudoers/auth/sudo_auth.h
plugins/sudoers/boottime.c
plugins/sudoers/check.c
plugins/sudoers/def_data.c
plugins/sudoers/def_data.h
plugins/sudoers/def_data.in
plugins/sudoers/defaults.c
plugins/sudoers/defaults.h
plugins/sudoers/env.c
plugins/sudoers/find_path.c
plugins/sudoers/getdate.c
plugins/sudoers/getdate.y
plugins/sudoers/getspwuid.c
plugins/sudoers/gettime.c
plugins/sudoers/goodpath.c
plugins/sudoers/gram.c
plugins/sudoers/gram.h
plugins/sudoers/gram.y
plugins/sudoers/ins_2001.h
plugins/sudoers/ins_classic.h
plugins/sudoers/ins_csops.h
plugins/sudoers/ins_goons.h
plugins/sudoers/insults.h
plugins/sudoers/interfaces.c
plugins/sudoers/interfaces.h
plugins/sudoers/iolog.c
plugins/sudoers/ldap.c
plugins/sudoers/logging.c
plugins/sudoers/logging.h
plugins/sudoers/match.c
plugins/sudoers/mkdefaults
plugins/sudoers/nonunix.h
plugins/sudoers/parse.c
plugins/sudoers/parse.h
plugins/sudoers/plugin_error.c
plugins/sudoers/pwutil.c
plugins/sudoers/redblack.c
plugins/sudoers/redblack.h
plugins/sudoers/set_perms.c
plugins/sudoers/sudo_nss.c
plugins/sudoers/sudo_nss.h
plugins/sudoers/sudoers
plugins/sudoers/sudoers.c
plugins/sudoers/sudoers.h
plugins/sudoers/sudoers2ldif
plugins/sudoers/sudoreplay.c
plugins/sudoers/testsudoers.c
plugins/sudoers/timestr.c
plugins/sudoers/toke.c
plugins/sudoers/toke.l
plugins/sudoers/tsgetgrpw.c
plugins/sudoers/vasgroups.c
plugins/sudoers/visudo.c
src/Makefile.in
src/aix.c
src/alloc.c
src/atobool.c
src/audit.c
src/bsm_audit.c
src/bsm_audit.h
src/conversation.c
src/error.c
src/fileops.c
src/fmt_string.c
src/lbuf.c
src/list.c
src/load_plugins.c
src/parse_args.c
src/pty.c
src/script.c
src/selinux.c
src/sesh.c
src/sudo.c
src/sudo.h
src/sudo_edit.c
src/sudo_noexec.c
src/sudo_plugin_int.h
src/sudo_usage.h.in
src/term.c
src/tgetpass.c
src/ttysize.c
src/zero_bytes.c
sudo.psf

View File

@ -15,8 +15,15 @@
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#
srcdir = @srcdir@
devdir = @devdir@
top_builddir = @top_builddir@
top_srcdir = @top_srcdir@
SUBDIRS = compat src plugins/sample plugins/sudoers doc
VERSION = @PACKAGE_VERSION@
all install: config.status
for d in $(SUBDIRS); do (cd $$d && $(MAKE) $@); done
@ -29,6 +36,12 @@ config.status:
exit 1; \
fi
dist: ChangeLog $(srcdir)/MANIFEST
pax -w -x ustar -s '/^/sudo-$(VERSION)\//' -f ../sudo-$(VERSION).tar \
`sed 's/[ ].*//' $(srcdir)/MANIFEST`
gzip -9f ../sudo-$(VERSION).tar
ls -l ../sudo-$(VERSION).tar.gz
clean: config.status
for d in $(SUBDIRS); do (cd $$d && $(MAKE) $@); done