diff options
author | Chris Larson <clarson@kergoth.com> | 2004-03-22 22:37:29 +0000 |
---|---|---|
committer | Chris Larson <clarson@kergoth.com> | 2004-03-22 22:37:29 +0000 |
commit | f249735ad71fd5f13bfd295c55e1e0d596a1dbff (patch) | |
tree | 93735f3e25beab7ac8bf066c504df17b244db4eb /cups/cups_1.1.19.oe | |
parent | 11ebfcef190cf217f67fa2b79adee0f58f9718f3 (diff) |
Another pass of .oe cleanups.
BKrev: 405f6aa92YDm0pQN4padj00WWayDrQ
Diffstat (limited to 'cups/cups_1.1.19.oe')
-rw-r--r-- | cups/cups_1.1.19.oe | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/cups/cups_1.1.19.oe b/cups/cups_1.1.19.oe index 7f26b7873e..d1da31b7eb 100644 --- a/cups/cups_1.1.19.oe +++ b/cups/cups_1.1.19.oe @@ -2,17 +2,17 @@ DEPENDS = "virtual/libc openssl jpeg libpng zlib" RDEPENDS = "libc6 openssl jpeg libpng zlib" DESCRIPTION = "An Internet printing system for Unix." -SRC_URI = ftp://ftp.easysw.com/pub/cups/${PV}/cups-${PV}-source.tar.bz2 +SRC_URI = "ftp://ftp.easysw.com/pub/cups/${PV}/cups-${PV}-source.tar.bz2" inherit autotools do_compile () { - oe_runmake 'SSLLIBS=-lssl -lcrypto -L${STAGING_LIBDIR}' \ - 'LIBPNG=-lpng -lm -L${STAGING_LIBDIR}' \ - 'LIBJPEG=-ljpeg -L${STAGING_LIBDIR}' \ - 'LIBZ=-lz -L${STAGING_LIBDIR}' + oe_runmake "SSLLIBS=-lssl -lcrypto -L${STAGING_LIBDIR}" \ + "LIBPNG=-lpng -lm -L${STAGING_LIBDIR}" \ + "LIBJPEG=-ljpeg -L${STAGING_LIBDIR}" \ + "LIBZ=-lz -L${STAGING_LIBDIR}" } do_install () { - oe_runmake 'DSTROOT=${D}' install + oe_runmake "DSTROOT=${D}" install } |