diff options
author | David Phillips <write2david@gmail.com> | 2012-10-31 22:01:08 -0500 |
---|---|---|
committer | David Phillips <write2david@gmail.com> | 2012-10-31 22:01:08 -0500 |
commit | 2f0a1adee8ab53fb12c976a4834587fa4adcc982 (patch) | |
tree | 2baaddc0d8e5f9305e97aa633ca9bb11ae7fceec | |
parent | Update method of dealing with cairo-dock's... (diff) | |
download | write2David-2f0a1adee8ab53fb12c976a4834587fa4adcc982.tar.gz write2David-2f0a1adee8ab53fb12c976a4834587fa4adcc982.tar.bz2 write2David-2f0a1adee8ab53fb12c976a4834587fa4adcc982.zip |
Oops, forgot that I need to make the directory...
...first
-rw-r--r-- | x11-misc/cairo-dock/cairo-dock-9999.ebuild | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/x11-misc/cairo-dock/cairo-dock-9999.ebuild b/x11-misc/cairo-dock/cairo-dock-9999.ebuild index 1e9896a..2981cd4 100644 --- a/x11-misc/cairo-dock/cairo-dock-9999.ebuild +++ b/x11-misc/cairo-dock/cairo-dock-9999.ebuild @@ -73,11 +73,17 @@ pkg_setup() # Also, the weird reported behavior of cairo-dock installing # stuff under "/usr/usr/lib6464" for 64-bit system. - # We are doing this so that files are actually placed into the normal directory - + # We are doing this so that files actually get placed into the normal directory + + mkdir /usr/usr ln -s /usr/lib /usr/usr/lib ln -s /usr/lib64 /usr/usr/lib6464/ + # Note that the first 'ln' will fail if we're on a 64-bit system. That's + # okay. + # Note that the second 'ln' will fail if we're on a 32-bit system. THat's + # okay. + } |