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@xxxxxxxxxxxxxxxxxxx 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. _______________________________________________ Fedora-package-review mailing list Fedora-package-review@xxxxxxxxxx http://www.redhat.com/mailman/listinfo/fedora-package-review