mirror of
https://git.proxmox.com/git/mirror_zfs.git
synced 2024-11-18 02:20:59 +03:00
Remove spl-x.y.z.zip creation in 'make dist'
Do no create a spl-x.y.z.zip file as part of 'make dist'. Simply create the standard spl-x.y.z.tar.gz file.
This commit is contained in:
parent
73fc084e92
commit
d8a1b73935
@ -10,7 +10,7 @@ KERNEL_DIR = module include
|
|||||||
endif
|
endif
|
||||||
SUBDIRS = $(USER_DIR) $(KERNEL_DIR)
|
SUBDIRS = $(USER_DIR) $(KERNEL_DIR)
|
||||||
|
|
||||||
AUTOMAKE_OPTIONS = foreign dist-zip
|
AUTOMAKE_OPTIONS = foreign
|
||||||
EXTRA_DIST = autogen.sh spl.spec.in spl-modules.spec.in META DISCLAIMER
|
EXTRA_DIST = autogen.sh spl.spec.in spl-modules.spec.in META DISCLAIMER
|
||||||
EXTRA_DIST += config/config.awk config/rpm.am config/deb.am config/tgz.am
|
EXTRA_DIST += config/config.awk config/rpm.am config/deb.am config/tgz.am
|
||||||
noinst_HEADERS = spl_config.h
|
noinst_HEADERS = spl_config.h
|
||||||
|
@ -122,7 +122,7 @@ am__relativize = \
|
|||||||
dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \
|
dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \
|
||||||
done; \
|
done; \
|
||||||
reldir="$$dir2"
|
reldir="$$dir2"
|
||||||
DIST_ARCHIVES = $(distdir).tar.gz $(distdir).zip
|
DIST_ARCHIVES = $(distdir).tar.gz
|
||||||
GZIP_ENV = --best
|
GZIP_ENV = --best
|
||||||
distuninstallcheck_listfiles = find . -type f -print
|
distuninstallcheck_listfiles = find . -type f -print
|
||||||
distcleancheck_listfiles = find . -type f -print
|
distcleancheck_listfiles = find . -type f -print
|
||||||
@ -280,7 +280,7 @@ top_srcdir = @top_srcdir@
|
|||||||
@CONFIG_USER_TRUE@USER_DIR = lib cmd scripts
|
@CONFIG_USER_TRUE@USER_DIR = lib cmd scripts
|
||||||
@CONFIG_KERNEL_TRUE@KERNEL_DIR = module include
|
@CONFIG_KERNEL_TRUE@KERNEL_DIR = module include
|
||||||
SUBDIRS = $(USER_DIR) $(KERNEL_DIR)
|
SUBDIRS = $(USER_DIR) $(KERNEL_DIR)
|
||||||
AUTOMAKE_OPTIONS = foreign dist-zip
|
AUTOMAKE_OPTIONS = foreign
|
||||||
EXTRA_DIST = autogen.sh spl.spec.in spl-modules.spec.in META \
|
EXTRA_DIST = autogen.sh spl.spec.in spl-modules.spec.in META \
|
||||||
DISCLAIMER config/config.awk config/rpm.am config/deb.am \
|
DISCLAIMER config/config.awk config/rpm.am config/deb.am \
|
||||||
config/tgz.am
|
config/tgz.am
|
||||||
@ -583,6 +583,7 @@ dist-tarZ: distdir
|
|||||||
dist-shar: distdir
|
dist-shar: distdir
|
||||||
shar $(distdir) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).shar.gz
|
shar $(distdir) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).shar.gz
|
||||||
$(am__remove_distdir)
|
$(am__remove_distdir)
|
||||||
|
|
||||||
dist-zip: distdir
|
dist-zip: distdir
|
||||||
-rm -f $(distdir).zip
|
-rm -f $(distdir).zip
|
||||||
zip -rq $(distdir).zip $(distdir)
|
zip -rq $(distdir).zip $(distdir)
|
||||||
@ -590,8 +591,6 @@ dist-zip: distdir
|
|||||||
|
|
||||||
dist dist-all: distdir
|
dist dist-all: distdir
|
||||||
tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz
|
tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz
|
||||||
-rm -f $(distdir).zip
|
|
||||||
zip -rq $(distdir).zip $(distdir)
|
|
||||||
$(am__remove_distdir)
|
$(am__remove_distdir)
|
||||||
|
|
||||||
# This target untars the dist file and tries a VPATH configuration. Then
|
# This target untars the dist file and tries a VPATH configuration. Then
|
||||||
|
Loading…
Reference in New Issue
Block a user