Makefile: do not package files located in .git (make dist)
Signed-off-by: Davide Madrisan <davide.madrisan@gmail.com>
This commit is contained in:
parent
8dc143cb1c
commit
70ffb2a0c2
@ -1,5 +1,5 @@
|
|||||||
Changes in version 1.8.1 - Christmas Release
|
Changes in version 1.8.1 - Christmas Release
|
||||||
Sun Dec 18 2011 Davide Madrisan <davide.madrisan(a)gmail.com>
|
Tue Dec 20 2011 Davide Madrisan <davide.madrisan(a)gmail.com>
|
||||||
|
|
||||||
+ update
|
+ update
|
||||||
* libapse - Silvan Calarco:
|
* libapse - Silvan Calarco:
|
||||||
@ -48,6 +48,9 @@ Sun Dec 18 2011 Davide Madrisan <davide.madrisan(a)gmail.com>
|
|||||||
Support library packages with a name not starting by 'lib'.
|
Support library packages with a name not starting by 'lib'.
|
||||||
(Feature asked by Silvan Calarco)
|
(Feature asked by Silvan Calarco)
|
||||||
|
|
||||||
|
+ update
|
||||||
|
* Makefile: do no package file located in the .git directory (make dist).
|
||||||
|
|
||||||
--------------------------------------------------------------------------------
|
--------------------------------------------------------------------------------
|
||||||
|
|
||||||
Changes in version 1.8.0
|
Changes in version 1.8.0
|
||||||
|
3
Makefile
3
Makefile
@ -163,7 +163,8 @@ dist: clean
|
|||||||
@rm -f history/$(dist_archive)
|
@rm -f history/$(dist_archive)
|
||||||
@echo "Creating the compressed tarball..."
|
@echo "Creating the compressed tarball..."
|
||||||
@$(INSTALL_DIR) history
|
@$(INSTALL_DIR) history
|
||||||
tar cf - --exclude=history -C .. $(distdir) |\
|
tar cf - --exclude=history --exclude=.git \
|
||||||
|
-C .. $(distdir) |\
|
||||||
bzip2 -9 -c > history/$(dist_archive)
|
bzip2 -9 -c > history/$(dist_archive)
|
||||||
|
|
||||||
dist-rpm: dist $(PACKAGE).spec
|
dist-rpm: dist $(PACKAGE).spec
|
||||||
|
Loading…
Reference in New Issue
Block a user