Correct misused 'rm -r' command in uninstall rules.
This commit is contained in:
parent
ec54dd65e2
commit
d409f31ff3
|
@ -1,3 +1,11 @@
|
||||||
|
2012-01-16 Keith Marshall <keithmarshall@users.sf.net>
|
||||||
|
|
||||||
|
Correct misused 'rm -r' command in uninstall rules.
|
||||||
|
|
||||||
|
* lib/Makefile.in lib/ddk/Makefile.in lib/directx/Makefile.in:
|
||||||
|
(uninstall-headers): Don't use 'rm -r' when removing individual files;
|
||||||
|
correct this typo, substituting 'rm -f' as appropriate.
|
||||||
|
|
||||||
2012-01-16 Keith Marshall <keithmarshall@users.sf.net>
|
2012-01-16 Keith Marshall <keithmarshall@users.sf.net>
|
||||||
|
|
||||||
Generalise makefile references to subdirectories of lib.
|
Generalise makefile references to subdirectories of lib.
|
||||||
|
|
|
@ -160,7 +160,7 @@ uninstall-libraries: $(need-DESTDIR-compatibility)
|
||||||
|
|
||||||
uninstall-headers: $(need-DESTDIR-compatibility)
|
uninstall-headers: $(need-DESTDIR-compatibility)
|
||||||
for file in $(HEADERS); do \
|
for file in $(HEADERS); do \
|
||||||
rm -r $(DESTDIR)${inst_includedir}/$$file; \
|
rm -f $(DESTDIR)${inst_includedir}/$$file; \
|
||||||
done
|
done
|
||||||
rmdir $(DESTDIR)${inst_includedir}
|
rmdir $(DESTDIR)${inst_includedir}
|
||||||
|
|
||||||
|
|
|
@ -88,7 +88,7 @@ uninstall-libraries: $(need-DESTDIR-compatibility)
|
||||||
|
|
||||||
uninstall-headers: $(need-DESTDIR-compatibility)
|
uninstall-headers: $(need-DESTDIR-compatibility)
|
||||||
for file in $(HEADERS); do \
|
for file in $(HEADERS); do \
|
||||||
rm -r $(DESTDIR)${ddk_includedir}/$$file; \
|
rm -f $(DESTDIR)${ddk_includedir}/$$file; \
|
||||||
done
|
done
|
||||||
rmdir $(DESTDIR)${ddk_includedir}
|
rmdir $(DESTDIR)${ddk_includedir}
|
||||||
|
|
||||||
|
|
|
@ -114,7 +114,7 @@ uninstall-libraries: $(need-DESTDIR-compatibility)
|
||||||
|
|
||||||
uninstall-headers: $(need-DESTDIR-compatibility)
|
uninstall-headers: $(need-DESTDIR-compatibility)
|
||||||
for file in $(HEADERS); do \
|
for file in $(HEADERS); do \
|
||||||
rm -r $(DESTDIR)${inst_includedir}/$$file; \
|
rm -f $(DESTDIR)${inst_includedir}/$$file; \
|
||||||
done
|
done
|
||||||
rmdir $(DESTDIR)${inst_includedir}
|
rmdir $(DESTDIR)${inst_includedir}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue