mirror of
https://git.freebsd.org/ports.git
synced 2025-07-18 09:49:18 -04:00
Don't make unused empty directories for no reason.
This commit is contained in:
parent
fae5fd0500
commit
8b43320eac
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=214957
1 changed files with 14 additions and 0 deletions
14
lang/pcc/files/patch-cccc-Makefile.in
Normal file
14
lang/pcc/files/patch-cccc-Makefile.in
Normal file
|
@ -0,0 +1,14 @@
|
||||||
|
--- cc/cc/Makefile.in.orig 2008-05-19 22:38:04.000000000 -0700
|
||||||
|
+++ cc/cc/Makefile.in 2008-06-16 07:49:59.000000000 -0700
|
||||||
|
@@ -53,8 +53,9 @@ install:
|
||||||
|
fi
|
||||||
|
test -z "${DESTDIR}$(mandir)/man1" || mkdir -p "${DESTDIR}$(mandir)/man1"
|
||||||
|
${INSTALL} cc.1 ${DESTDIR}${mandir}/man1/${DEST}.1
|
||||||
|
- test -z "$(PCCINCDIR)" || mkdir -p "$(PCCINCDIR)"
|
||||||
|
- test -z "$(PCCLIBDIR)" || mkdir -p "$(PCCLIBDIR)"
|
||||||
|
+ # Don't make unused empty directories for no reason.
|
||||||
|
+ #test -z "$(PCCINCDIR)" || mkdir -p "$(PCCINCDIR)"
|
||||||
|
+ #test -z "$(PCCLIBDIR)" || mkdir -p "$(PCCLIBDIR)"
|
||||||
|
|
||||||
|
clean:
|
||||||
|
/bin/rm -f $(OBJS) ${DEST}
|
Loading…
Add table
Reference in a new issue