Skip to Content.
Sympa Menu

sm-grimoire-bugs - [SM-Grimoire-Bugs] [Bug 14845] New: nvidia_driver doesn't create applications directory

sm-grimoire-bugs AT lists.ibiblio.org

Subject: SourceMage Grimoire Bug List

List archive

Chronological Thread  
  • From: bugzilla-daemon AT bugs.sourcemage.org
  • To: sm-grimoire-bugs AT lists.ibiblio.org
  • Subject: [SM-Grimoire-Bugs] [Bug 14845] New: nvidia_driver doesn't create applications directory
  • Date: 22 Oct 2008 04:19:55 -0000

http://bugs.sourcemage.org/show_bug.cgi?id=14845

Summary: nvidia_driver doesn't create applications directory
Product: Codex
Version: stable grimoire
Platform: x86
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P3
Component: z-rejected grimoire
AssignedTo: sm-grimoire-bugs AT lists.ibiblio.org
ReportedBy: fredrik.carlstrom AT tele2.se


If nvidia_driver is the first spell to install into the directory
$INSTALL_ROOT/usr/share/applications it must create it. Otherwise the
nvidia-settings.desktop file will be installed as a file with name
applications, instead of properly being installed into the directory
applications.

Thus, in the INSTALL script the passage:

#
# Install Freedesktop.org spec
#
install -m 0644 -o root -g root \
$SOURCE_DIRECTORY/usr/share/applications/nvidia-settings.desktop \
$INSTALL_ROOT/usr/share/applications &&

should be changed to:

#
# Install Freedesktop.org spec
#
if [ ! -d $INSTALL_ROOT/usr/share/applications ]; then
mkdir -p $INSTALL_ROOT/usr/share/applications
fi &&
install -m 0644 -o root -g root \
$SOURCE_DIRECTORY/usr/share/applications/nvidia-settings.desktop \
$INSTALL_ROOT/usr/share/applications &&


--
Configure bugmail: http://bugs.sourcemage.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.




Archive powered by MHonArc 2.6.24.

Top of Page