diff options
author | dirk <dirk@FreeBSD.org> | 2002-01-01 22:07:39 +0800 |
---|---|---|
committer | dirk <dirk@FreeBSD.org> | 2002-01-01 22:07:39 +0800 |
commit | 9c015ab4b9e1a0c2c63112a25ff805d6359d15d3 (patch) | |
tree | 109dd7519ea4454cb26e514b9aa99147edfb24ce /print | |
parent | b439a492d646bc431d1c8f03456f688bb4f627ff (diff) | |
download | freebsd-ports-gnome-9c015ab4b9e1a0c2c63112a25ff805d6359d15d3.tar.gz freebsd-ports-gnome-9c015ab4b9e1a0c2c63112a25ff805d6359d15d3.tar.zst freebsd-ports-gnome-9c015ab4b9e1a0c2c63112a25ff805d6359d15d3.zip |
Fix build if ${PORTSDIR} is a symlink by finding jpeg's WRKSRC properly.
Diffstat (limited to 'print')
-rw-r--r-- | print/ghostscript-afpl/Makefile | 2 | ||||
-rw-r--r-- | print/ghostscript-gnu/Makefile | 2 | ||||
-rw-r--r-- | print/ghostscript-gpl/Makefile | 2 | ||||
-rw-r--r-- | print/ghostscript7/Makefile | 2 | ||||
-rw-r--r-- | print/ghostscript8/Makefile | 2 |
5 files changed, 5 insertions, 5 deletions
diff --git a/print/ghostscript-afpl/Makefile b/print/ghostscript-afpl/Makefile index 41b184f1ef25..13151b76468b 100644 --- a/print/ghostscript-afpl/Makefile +++ b/print/ghostscript-afpl/Makefile @@ -133,7 +133,7 @@ pre-everything:: post-extract: ${ECHO_MSG} ">>> in post-extract ..." - ${LN} -sf ${WRKDIRPREFIX}/${PORTSDIR}/graphics/jpeg/work/jpeg-6b \ + ${LN} -sf `cd ${PORTSDIR}/graphics/jpeg && ${MAKE} -V WRKSRC` \ ${WRKSRC}/jpeg # ** 3rd party driver ** # Note: don't forget to add those devices in scripts/configure and diff --git a/print/ghostscript-gnu/Makefile b/print/ghostscript-gnu/Makefile index eb0952e2cd99..d8cc0ad686d6 100644 --- a/print/ghostscript-gnu/Makefile +++ b/print/ghostscript-gnu/Makefile @@ -130,7 +130,7 @@ pre-everything:: post-extract: ${ECHO_MSG} ">>> in post-extract ..." - ${LN} -sf ${WRKDIRPREFIX}/${PORTSDIR}/graphics/jpeg/work/jpeg-6b \ + ${LN} -sf `cd ${PORTSDIR}/graphics/jpeg && ${MAKE} -V WRKSRC` \ ${WRKSRC}/jpeg # ** 3rd party driver ** # Note: don't forget to add those devices in scripts/configure and diff --git a/print/ghostscript-gpl/Makefile b/print/ghostscript-gpl/Makefile index 41b184f1ef25..13151b76468b 100644 --- a/print/ghostscript-gpl/Makefile +++ b/print/ghostscript-gpl/Makefile @@ -133,7 +133,7 @@ pre-everything:: post-extract: ${ECHO_MSG} ">>> in post-extract ..." - ${LN} -sf ${WRKDIRPREFIX}/${PORTSDIR}/graphics/jpeg/work/jpeg-6b \ + ${LN} -sf `cd ${PORTSDIR}/graphics/jpeg && ${MAKE} -V WRKSRC` \ ${WRKSRC}/jpeg # ** 3rd party driver ** # Note: don't forget to add those devices in scripts/configure and diff --git a/print/ghostscript7/Makefile b/print/ghostscript7/Makefile index eb0952e2cd99..d8cc0ad686d6 100644 --- a/print/ghostscript7/Makefile +++ b/print/ghostscript7/Makefile @@ -130,7 +130,7 @@ pre-everything:: post-extract: ${ECHO_MSG} ">>> in post-extract ..." - ${LN} -sf ${WRKDIRPREFIX}/${PORTSDIR}/graphics/jpeg/work/jpeg-6b \ + ${LN} -sf `cd ${PORTSDIR}/graphics/jpeg && ${MAKE} -V WRKSRC` \ ${WRKSRC}/jpeg # ** 3rd party driver ** # Note: don't forget to add those devices in scripts/configure and diff --git a/print/ghostscript8/Makefile b/print/ghostscript8/Makefile index 41b184f1ef25..13151b76468b 100644 --- a/print/ghostscript8/Makefile +++ b/print/ghostscript8/Makefile @@ -133,7 +133,7 @@ pre-everything:: post-extract: ${ECHO_MSG} ">>> in post-extract ..." - ${LN} -sf ${WRKDIRPREFIX}/${PORTSDIR}/graphics/jpeg/work/jpeg-6b \ + ${LN} -sf `cd ${PORTSDIR}/graphics/jpeg && ${MAKE} -V WRKSRC` \ ${WRKSRC}/jpeg # ** 3rd party driver ** # Note: don't forget to add those devices in scripts/configure and |