diff options
Diffstat (limited to 'recipes/tmdns/tmdns-20030116/install-init.d.patch')
-rw-r--r-- | recipes/tmdns/tmdns-20030116/install-init.d.patch | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/recipes/tmdns/tmdns-20030116/install-init.d.patch b/recipes/tmdns/tmdns-20030116/install-init.d.patch new file mode 100644 index 0000000000..7941df1d42 --- /dev/null +++ b/recipes/tmdns/tmdns-20030116/install-init.d.patch @@ -0,0 +1,28 @@ + +# +# Patch managed by http://www.mn-logistik.de/unsupported/pxa250/patcher +# + +--- tmdns/init.d/Makefile.am~install-init.d ++++ tmdns/init.d/Makefile.am +@@ -23,6 +23,7 @@ + install: + if [ -f initscript ] ;\ + then \ +- install -m 755 initscript $(DESTDIR)$(INIT_DIR)/tmdns ;\ ++ install -d $(DESTDIR)$(INIT_DIR); \ ++ install -m 755 initscript $(DESTDIR)$(INIT_DIR)/tmdns; \ + fi + +--- tmdns/init.d/Makefile.in~install-init.d ++++ tmdns/init.d/Makefile.in +@@ -274,7 +274,8 @@ + install: + if [ -f initscript ] ;\ + then \ +- install -m 755 initscript $(DESTDIR)$(INIT_DIR)/tmdns ;\ ++ install -d $(DESTDIR)$(INIT_DIR); \ ++ install -m 755 initscript $(DESTDIR)$(INIT_DIR)/tmdns; \ + fi + # Tell versions [3.59,3.63) of GNU make to not export all variables. + # Otherwise a system limit (for SysV at least) may be exceeded. |