blob: 87a232a8ee6b6d471aa53da5994083e0fb8f4c1e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
Patch to use mkinstalldirs instead of mkdirhier to be friendly with modular
Xorg.
Patch from Fedora package.
See Gentoo Bug #112706.
diff -Naur libvisual-plugins-0.2.0.orig/plugins/actor/G-Force/Makefile.am libvisual-plugins-0.2.0/plugins/actor/G-Force/Makefile.am
--- libvisual-plugins-0.2.0.orig/plugins/actor/G-Force/Makefile.am 2005-01-21 16:25:08.000000000 +0100
+++ libvisual-plugins-0.2.0/plugins/actor/G-Force/Makefile.am 2005-11-21 13:05:43.000000000 +0100
@@ -26,7 +26,7 @@
unix/libvisual/libactor_gforce.la
install-data-local:
- test -d "$(DESTDIR)$(pkgdatadir)" || mkdirhier "$(DESTDIR)$(pkgdatadir)"
+ test -d "$(DESTDIR)$(pkgdatadir)" || $(mkinstalldirs) "$(DESTDIR)$(pkgdatadir)"
cp -r deffont "GForceColorMaps" "GForceDeltaFields" "GForceParticles" "GForceWaveShapes" "$(DESTDIR)$(pkgdatadir)"
uninstall-local:
diff -Naur libvisual-plugins-0.2.0.orig/plugins/actor/G-Force/Makefile.in libvisual-plugins-0.2.0/plugins/actor/G-Force/Makefile.in
--- libvisual-plugins-0.2.0.orig/plugins/actor/G-Force/Makefile.in 2005-01-24 15:44:21.000000000 +0100
+++ libvisual-plugins-0.2.0/plugins/actor/G-Force/Makefile.in 2005-11-21 13:06:56.000000000 +0100
@@ -613,7 +613,7 @@
install-data-local:
- test -d "$(DESTDIR)$(pkgdatadir)" || mkdirhier "$(DESTDIR)$(pkgdatadir)"
+ test -d "$(DESTDIR)$(pkgdatadir)" || $(mkinstalldirs) "$(DESTDIR)$(pkgdatadir)"
cp -r deffont "GForceColorMaps" "GForceDeltaFields" "GForceParticles" "GForceWaveShapes" "$(DESTDIR)$(pkgdatadir)"
uninstall-local:
|