[Bug 229490] Review Request: pypar2 - graphical frontend to par2cmdline

bugzilla at redhat.com bugzilla at redhat.com
Tue Feb 27 17:06:47 UTC 2007


Please do not reply directly to this email. All additional
comments should be made in the comments box of this bug report.

Summary: Review Request: pypar2 - graphical frontend to par2cmdline


https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=229490





------- Additional Comments From mtasaka at ioa.s.u-tokyo.ac.jp  2007-02-27 12:06 EST -------
(In reply to comment #5)
> pong!
> (I'm busy at school. Just one more test!)
> 
> W: symlink-should-be-relative
> I can't do anything else.

Hint:
------------------------------------------------
rm %{buildroot}%{_bindir}/%{name}
ln -s %{_datadir}/%{name}/src/main.py %{buildroot}%{_bindir}/%{name}
------------------------------------------------
This symlink uses absolute path for main.py

One of the easiest way to create relative symlink is:
-------------------------------------------------
rm %{buildroot}%{_bindir}/%{name}
pushd %{buildroot}%{_bindir}
ln -sf `find .. -name main.py` %{name}
popd
--------------------------------------------------
This creates a symlink as
pypar2 -> ../share/pypar2/src/main.py

-- 
Configure bugmail: https://bugzilla.redhat.com/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the QA contact for the bug, or are watching the QA contact.




More information about the Fedora-package-review mailing list