[gnome-sound-recorder/wip/chergert/fix-symlink] build: fix gnome-sound-recorder symlink



commit 352d341ef0b52f9758f60b8708b37ade423154bb
Author: Christian Hergert <chergert redhat com>
Date:   Wed Jun 12 11:56:24 2019 -0700

    build: fix gnome-sound-recorder symlink
    
    When testing this from Builder, I noticed we could not execute with the
    "Run" button because the symlink was broken.

 build-aux/meson_post_install.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
---
diff --git a/build-aux/meson_post_install.py b/build-aux/meson_post_install.py
index 897a1db..8f2022b 100755
--- a/build-aux/meson_post_install.py
+++ b/build-aux/meson_post_install.py
@@ -11,7 +11,7 @@ bindir = os.path.normpath(destdir + os.sep + sys.argv[2])
 if not os.path.exists(bindir):
   os.makedirs(bindir)
 
-src = os.path.join(datadir, 'gnome-sound-recorder', 'org.gnome.SoundRecorder')
+src = os.path.join(datadir, 'org.gnome.SoundRecorder', 'org.gnome.SoundRecorder')
 dest = os.path.join(bindir, 'gnome-sound-recorder')
 subprocess.call(['ln', '-s', '-f', src, dest])
 


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]