dist fixes wrt git / autoconf. - susmb - mounting of SMB/CIFS shares via FUSE | |
git clone git://git.codemadness.org/susmb | |
Log | |
Files | |
Refs | |
README | |
LICENSE | |
--- | |
commit c39c9968c91aaf0826c08c9b363dacb0e4b10ed0 | |
parent 64b4e25f05e63a782bf42fc2ad5af8cfae57f551 | |
Author: Geoff Johnstone <[email protected]> | |
Date: Sat, 11 Apr 2009 11:08:17 +0100 | |
dist fixes wrt git / autoconf. | |
Diffstat: | |
M Makefile.in | 7 +++---- | |
1 file changed, 3 insertions(+), 4 deletions(-) | |
--- | |
diff --git a/Makefile.in b/Makefile.in | |
@@ -75,11 +75,10 @@ tar: | |
mkdir $(STAGING) | |
git archive $(VERSION) | tar -C $(STAGING) -x -f - | |
git log > $(STAGING)/Changelog | |
- cp -a $(PWD)/* $(STAGING)/ | |
- rm -rf $(STAGING)/.hg | |
- (cd $(STAGING)/.. && \ | |
+ (cd $(STAGING) && \ | |
autoreconf && \ | |
- rm -rf autom4te.cache && \ | |
+ rm -rf autom4te.cache) | |
+ (cd $(STAGING)/.. && \ | |
tar jcf $(PWD)/usmb-$(VERSION).tar.bz2 usmb-$(VERSION) && \ | |
tar zcf $(PWD)/usmb-$(VERSION).tar.gz usmb-$(VERSION)) | |
rm -rf $(STAGING) |