Introduction
Introduction Statistics Contact Development Disclaimer Help
Use PACKAGE_NAME for tar archive name - susmb - mounting of SMB/CIFS shares via…
git clone git://git.codemadness.org/susmb
Log
Files
Refs
README
LICENSE
---
commit c8a437c7a29126d5fb58cf5066670b9f02c10955
parent 0f59cdbc1772b76d522be19d5b74e5ef0c4bc63b
Author: Michal Suchanek <[email protected]>
Date: Sun, 21 Mar 2010 23:23:23 +0100
Use PACKAGE_NAME for tar archive name
Diffstat:
M Makefile.in | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
---
diff --git a/Makefile.in b/Makefile.in
@@ -69,6 +69,7 @@ uninstall:
dist: tar
+PACKAGE = @PACKAGE_NAME@
ifeq ($(SNAPSHOT),)
VERSION = $(shell grep 'USMB_VERSION[^_]' version.h | sed 's/.*0x//')
ARCHIVE = $(VERSION)
@@ -87,8 +88,8 @@ tar:
autoreconf && \
rm -rf autom4te.cache)
(cd $(STAGING)/.. && \
- tar jcf $(PWD)/usmb-$(VERSION).tar.bz2 usmb-$(VERSION) && \
- tar zcf $(PWD)/usmb-$(VERSION).tar.gz usmb-$(VERSION))
+ tar jcf $(PWD)/$(PACKAGE)-$(VERSION).tar.bz2 $(PACKAGE)-$(VERSION) &&…
+ tar zcf $(PWD)/$(PACKAGE)-$(VERSION).tar.gz $(PACKAGE)-$(VERSION))
rm -rf $(STAGING)
You are viewing proxied material from codemadness.org. The copyright of proxied material belongs to its original authors. Any comments or complaints in relation to proxied material should be directed to the original authors of the content concerned. Please see the disclaimer for more details.