Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

share/unshare SMB support #498

Closed
wants to merge 19 commits into from
Closed
Changes from 1 commit
Commits
Show all changes
19 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Add --keep-version to alien to make sure the package is 'tagged' with
the kernel version etc.
FransUrbo committed Jan 16, 2012

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
commit 8a3fb5d72f5e5152c35f5e3b27137f38b9784a5f
8 changes: 4 additions & 4 deletions Makefile.in
Original file line number Diff line number Diff line change
@@ -977,7 +977,7 @@ deb-modules: deb-local rpm-modules
arch=`$(RPM) -qp $${name}-$${version}.src.rpm --qf %{arch} | tail -1`; \
pkg1=$${name}-$${version}_$${release}.$${arch}.rpm; \
pkg2=$${name}-devel-$${version}_$${release}.$${arch}.rpm; \
fakeroot $(ALIEN) --scripts --to-deb $$pkg1 $$pkg2; \
fakeroot $(ALIEN) --keep-version --scripts --to-deb $$pkg1 $$pkg2; \
$(RM) $$pkg1 $$pkg2

deb-utils: deb-local rpm-utils
@@ -988,7 +988,7 @@ deb-utils: deb-local rpm-utils
pkg2=$${name}-devel-$${version}.$${arch}.rpm; \
pkg3=$${name}-test-$${version}.$${arch}.rpm; \
pkg4=$${name}-dracut-$${version}.$${arch}.rpm; \
fakeroot $(ALIEN) --scripts --to-deb $$pkg1 $$pkg2 $$pkg3 $$pkg4; \
fakeroot $(ALIEN) --keep-version --scripts --to-deb $$pkg1 $$pkg2 $$pkg3 $$pkg4; \
$(RM) $$pkg1 $$pkg2 $$pkg3 $$pkg4

deb: deb-modules deb-utils
@@ -1008,7 +1008,7 @@ tgz-modules: tgz-local rpm-modules
arch=`$(RPM) -qp $${name}-$${version}.src.rpm --qf %{arch} | tail -1`; \
pkg1=$${name}-$${version}_$${release}.$${arch}.rpm; \
pkg2=$${name}-devel-$${version}_$${release}.$${arch}.rpm; \
fakeroot $(ALIEN) --scripts --to-tgz $$pkg1 $$pkg2; \
fakeroot $(ALIEN) --keep-version --scripts --to-tgz $$pkg1 $$pkg2; \
$(RM) $$pkg1 $$pkg2

tgz-utils: tgz-local rpm-utils
@@ -1018,7 +1018,7 @@ tgz-utils: tgz-local rpm-utils
pkg1=$${name}-$${version}.$${arch}.rpm; \
pkg2=$${name}-devel-$${version}.$${arch}.rpm; \
pkg3=$${name}-test-$${version}.$${arch}.rpm; \
fakeroot $(ALIEN) --scripts --to-tgz $$pkg1 $$pkg2 $$pkg3; \
fakeroot $(ALIEN) --keep-version --scripts --to-tgz $$pkg1 $$pkg2 $$pkg3; \
$(RM) $$pkg1 $$pkg2 $$pkg3

tgz: tgz-modules tgz-utils