mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-25 03:01:03 +00:00
uninstall fixes
Original commit message from CVS: uninstall fixes
This commit is contained in:
parent
9111ea764c
commit
7943699850
4 changed files with 4 additions and 4 deletions
2
common
2
common
|
@ -1 +1 @@
|
|||
Subproject commit fcdc6ccbcc674dd487021d87a0313abf02bae396
|
||||
Subproject commit 9f37b3e515260c7b294222a502b2cc75dd0983b6
|
|
@ -258,7 +258,7 @@ uninstall-local:
|
|||
echo '-- Uninstalling $(DESTDIR)$(TARGET_DIR)/index.sgml' ; \
|
||||
rm -f $(DESTDIR)$(TARGET_DIR)/index.sgml; \
|
||||
fi)
|
||||
rmdir -p --ignore-fail-on-non-empty $(DESTDIR)$(TARGET_DIR)
|
||||
if test -d $(DESTDIR)$(TARGET_DIR); then rmdir -p --ignore-fail-on-non-empty $(DESTDIR)$(TARGET_DIR); fi
|
||||
else
|
||||
install-data-local:
|
||||
uninstall-local:
|
||||
|
|
|
@ -9,7 +9,7 @@ install-data-local: html
|
|||
|
||||
uninstall-local:
|
||||
for part in $(HTML_DAT); do rm -rf $(DESTDIR)$(docdir)/$$part; done
|
||||
rmdir $(DESTDIR)$(docdir)
|
||||
if test -d $(DESTDIR)$(docdir); then rmdir $(DESTDIR)$(docdir); fi
|
||||
else
|
||||
install-data-local:
|
||||
uninstall-local:
|
||||
|
|
|
@ -257,7 +257,7 @@ uninstall-local:
|
|||
echo '-- Uninstalling $(DESTDIR)$(TARGET_DIR)/index.sgml' ; \
|
||||
rm -f $(DESTDIR)$(TARGET_DIR)/index.sgml; \
|
||||
fi)
|
||||
rmdir -p --ignore-fail-on-non-empty $(DESTDIR)$(TARGET_DIR)
|
||||
if test -d $(DESTDIR)$(TARGET_DIR); then rmdir -p --ignore-fail-on-non-empty $(DESTDIR)$(TARGET_DIR); fi
|
||||
else
|
||||
install-data-local:
|
||||
uninstall-local:
|
||||
|
|
Loading…
Reference in a new issue