summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
author/C=EU/ST=EU/CN=Patrick McHardy/emailAddress=kaber@trash.net </C=EU/ST=EU/CN=Patrick McHardy/emailAddress=kaber@trash.net>2008-04-21 12:27:08 +0000
committer/C=EU/ST=EU/CN=Patrick McHardy/emailAddress=kaber@trash.net </C=EU/ST=EU/CN=Patrick McHardy/emailAddress=kaber@trash.net>2008-04-21 12:27:08 +0000
commit0183e7aba2b6ff6e9181faafece48773fe7b5af2 (patch)
tree5b0a69dd1ba3307a1b305eed190dd14a3cd0d7d6
parentfda90b29606f8d91952b5f94c08d36bd03c4bf5e (diff)
[PATCH 1] Makefile.am: use PACKAGE_TARNAME
-rw-r--r--Makefile.am10
1 files changed, 5 insertions, 5 deletions
diff --git a/Makefile.am b/Makefile.am
index dc45b66..49edbf8 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -97,8 +97,8 @@ extensions/%:
.PHONY: tarball
tarball:
- rm -Rf /tmp/xtables-${PACKAGE_VERSION};
- pushd ${top_srcdir} && git-archive --prefix=xtables-${PACKAGE_VERSION}/ HEAD | tar -C /tmp -x && popd;
- pushd /tmp/xtables-${PACKAGE_VERSION} && ./autogen.sh && popd;
- tar -C /tmp -cjf xtables-${PACKAGE_VERSION}.tar.bz2 --owner=root --group=root xtables-${PACKAGE_VERSION}/;
- rm -Rf /tmp/xtables-${PACKAGE_VERSION};
+ rm -Rf /tmp/${PACKAGE_TARNAME}-${PACKAGE_VERSION};
+ pushd ${top_srcdir} && git-archive --prefix=${PACKAGE_TARNAME}-${PACKAGE_VERSION}/ HEAD | tar -C /tmp -x && popd;
+ pushd /tmp/${PACKAGE_TARNAME}-${PACKAGE_VERSION} && ./autogen.sh && popd;
+ tar -C /tmp -cjf ${PACKAGE_TARNAME}-${PACKAGE_VERSION}.tar.bz2 --owner=root --group=root ${PACKAGE_TARNAME}-${PACKAGE_VERSION}/;
+ rm -Rf /tmp/${PACKAGE_TARNAME}-${PACKAGE_VERSION};