mirror of
https://github.com/samba-team/samba.git
synced 2025-02-23 09:57:40 +03:00
r21038: Move commands to distclean target
(This used to be commit 6713945fbab2df5b695c11df623f16d0abd1a772)
This commit is contained in:
parent
96c3cb957b
commit
2096b36411
@ -273,6 +273,7 @@ distclean: clean
|
||||
-rm -f config.status
|
||||
-rm -f config.log config.cache
|
||||
-rm -f config.pm config.mk
|
||||
-rm -rf webapps/qooxdoo-*-sdk/frontend/framework/.cache
|
||||
-rm -f $(PC_FILES)
|
||||
|
||||
removebackup:
|
||||
@ -284,6 +285,7 @@ realdistclean: distclean removebackup
|
||||
-rm -f configure
|
||||
-rm -f $(MANPAGES)
|
||||
|
||||
check:: test
|
||||
test: $(DEFAULT_TEST_TARGET)
|
||||
|
||||
SELFTEST = builddir=$(builddir) srcdir=$(srcdir) \
|
||||
|
@ -1,13 +1,12 @@
|
||||
#!/bin/sh
|
||||
|
||||
FROM=$1
|
||||
VERSION=$2
|
||||
VERSION=$1
|
||||
|
||||
svn export $FROM samba-$VERSION
|
||||
svn export . samba-$VERSION || exit 1
|
||||
|
||||
( cd samba-$VERSION || exit 1
|
||||
(cd source && ./autogen.sh ) || exit 1
|
||||
rm -rf webapps/qooxdoo-*-sdk/frontend/framework/.cache || exit 1
|
||||
) || exit 1
|
||||
cd samba-$VERSION/source
|
||||
./autogen.sh || exit 1
|
||||
./configure || exit 1
|
||||
make dist || exit 1
|
||||
|
||||
tar -zcf samba-$VERSION.tar.gz samba-$VERSION
|
||||
|
Loading…
x
Reference in New Issue
Block a user