Building "xmoniz" patched compiz, no rule to make issue

I'm following this guide modified with squarehimself/tux_mark_5's tweaks
I get to step 6 of the original compiz guide
6. $ make (build)
7. $ [sudo] make install (install)
8. $ [sudo] make findcompiz_install
and get this error:
"no rule to make target install"
the contents of ~/compiz/build/ are:
cmake/ CPackConfig.cmake include/ po/
CMakeCache.txt CPackSourceConfig.cmake kde/ src/
CMakeFiles/ generated/ libdecoration/ xslt/
cmake_uninstall.cmake gtk/ metadata/
compiz.pc images/ plugins/
has anyone managed to get this working?

Don't compile by hand. Modify the compiz-* PKGBUILDs instead. That's what I would do anyway.

Similar Messages

  • [SOLVED] make: *** No rule to make target `kernelrelease'

    Hi guys! My problem is similar this one Please help a newbie compile a kernel
    I tried to compile kernel 2.6.33.9 by simply copying the PKGBUILD and other files into my workspace. Everything goes well but I cant make a package:
    PKGBUILD:
    pkgdesc="The Linux Kernel and modules with tuxonice support and rt-patchset"
    depends=('coreutils' 'linux-firmware' 'module-init-tools>=3.16' 'mkinitcpio>=0,7')
    optdepends=('crda: to set the correct wireless channels of your country')
    pkgname=linux-rt-ice
    backup=(etc/mkinitcpio.d/$pkgname.preset)
    _kernelname=${pkgname#linux}
    _basekernel=2.6.33
    pkgver=${_basekernel}.9
    #pkgver=${_basekernel}
    pkgrel=1
    arch=('i686' 'x86_64')
    url="https://rt.wiki.kernel.org"
    license=('GPL2')
    install=$pkgname.install
    provides=('kernel26-rt-ice')
    conflicts=('kernel26-rt-ice')
    replaces=('kernel26-rt-ice')
    makedepends=('xmlto' 'docbook-xsl')
    options=('!strip')
    ### User/Environment defined variables
    enable_toi=${enable_toi:-0}
    BFQ_IO_SCHEDULER="y"
    bfs_scheduler=${bfs_scheduler:-0}
    keep_source_code=${keep_source_code:-1}
    gconfig=${gconfig:-0}
    xconfig=${xconfig:-0}
    menuconfig=${menuconfig:-1}
    realtime_patch=${realtime_patch:-1}
    local_patch_dir="${local_patch_dir:-}"
    use_config="${use_config:-}"
    use_config_gz=${use_config_gz:-0}
    enable_reiser4=${enable_reiser4:-1}
    ### Compile time defined variables
    ### Files / Versions
    #!file_rt="patch-3.0.14-rt31.patch.gz"
    #!file_reiser4="reiser4-for-2.6.31.patch.bz2"
    #file_toi="current-tuxonice-for-3.0.patch.bz2"
    #file_bfs="2.6.38.3-sched-bfs-401.patch"
    file_rt="patch-2.6.33.9-rt31.gz"
    file_reiser4="reiser4-for-2.6.33.patch.gz"
    file_bfs="2.6.33.7-sched-bfs-357.patch"
    _bfqpath="http://algo.ing.unimo.it/people/paolo/disk_sched/patches/2.6.33/"
    source=("ftp://ftp.kernel.org/pub/linux/kernel/v2.6/linux-${_basekernel}.tar.bz2"
    "ftp://ftp.kernel.org/pub/linux/kernel/v2.6/longterm/v2.6.33/patch-2.6.33.9.gz"
    http://www.kernel.org/pub/linux/kernel/projects/rt/2.6.33/patch-2.6.33.9-rt31.gz
    # https://tglx.de/~tglx/rt/3.0/${file_rt}
    http://sourceforge.net/projects/reiser4/files/reiser4-for-linux-2.6/reiser4-for-2.6.33.patch.gz
    #http://www.tuxonice.net/files/${file_toi}
    http://ck.kolivas.org/patches/bfs/${_basekernel}/${file_bfs}
    # the main kernel config files
    'config' 'config.x86_64'
    # standard config files for mkinitcpio ramdisk
    "${pkgname}.preset"
    'change-default-console-loglevel.patch'
    'i915-fix-ghost-tv-output.patch'
    #BFQ patch:
    "${_bfqpath}/0001-bfq_iosched-block-prepare_IO_context_code-v1-r1.patch"
    "${_bfqpath}/0002-bfq_iosched-block-add_cgroups_kconfig_and_build_bits-v1-r1.patch"
    "${_bfqpath}/0003-bfq_iosched-block-introduce_BFQ-v1-r1.patch")
    md5sums=('c3883760b18d50e8d78819c54d579b00'
    '6594052b26f8e79c374c278f62d3329b'
    '772776957913e76492e3547b304b75c2'
    '96f986418d1ab9b9abdcbfb2c20fdc0d'
    '3b8ef39f43a1dab60ddc703049cb8ac2'
    '540318683b69e49ab5fa629cfb32dc48'
    '74d172143d448a002834879d99c3992c'
    '7c9725208ab6834602c8b9d645ed001d'
    '9d3c56a4b999c8bfbd4018089a62f662'
    '263725f20c0b9eb9c353040792d644e5'
    '69adc7f64f4dc5b34ad1cb3825b7c0f4'
    '4146ee711eed553c024a93c766463583'
    '678c791c7df57a71cdb480fdc49aec8d')
    build() {
    cd "${srcdir}/linux-${_basekernel}"
    # add upstream patch
    patch -p1 -i "${srcdir}/patch-${pkgver}"
    if [ -n "${local_patch_dir}" ] && [ -d "${local_patch_dir}" ] ; then
    echo "Applying patches from ${local_patch_dir} ..."
    for my_patch in "${local_patch_dir}"/* ; do
    echo -e "Applying custom patch:\t'${my_patch}'" || true
    patch -Np1 -i "${my_patch}" || { echo -e "Failed custom patch:\t'${my_patch}'" ; return 1 ; }
    done
    fi
    # Applying realtime patch
    if [ "$realtime_patch" = "1" ]; then
    echo "Applying real time patch"
    # Strip './Makefile' changes
    gzip -dc ${srcdir}/${file_rt} \
    | sed '/diff --git a\/Makefile b\/Makefile/,/*DOCUMENTATION*/d' \
    | patch -Np1 || { echo "Failed Realtime patch '${file_rt}'"; return 1 ; }
    fi
    # applying reiserfs4 patch
    if [ "$enable_reiser4" = "1" ]; then
    echo "Applying ${file_reiser4%.gz}"
    gzip -dc ${srcdir}/${file_reiser4} | patch -Np1 || { echo "Failed reiser4 patch '${file_reiser4%.gz}'"; return 1 ; }
    fi
    # applying tuxonice patch
    if [ "${enable_toi}" = "1" ]; then
    echo "Applying ${file_toi%.bz2}"
    # fix to tuxonice patch to work with rt
    #if [ "$realtime_patch" = "1" ]; then
    #bzip2 -dck ${srcdir}/${file_toi} \
    #| sed '/diff --git a\/kernel\/fork.c b\/kernel\/fork.c/,/{/d' \
    #| sed 's/printk(KERN_INFO "PM: Creating hibernation image:\\n/printk(KERN_INFO "PM: Creating hibernation image: \\n/' \
    #| patch -Np1 || { echo "Failed TOI w/rt" ; return 1 ; }
    #else
    bzip2 -dck ${srcdir}/${file_toi} \
    | sed 's/printk(KERN_INFO "PM: Creating hibernation image:\\n/printk(KERN_INFO "PM: Creating hibernation image: \\n/' \
    | patch -Np1 -F4 || { echo "Failed TOI"; return 1 ; }
    #fi
    fi
    if [ "${bfs_scheduler}" = "1" ] && [ "${realtime_patch}" = "0" ]; then
    # applying BFS scheduler patch
    echo "BFS scheduler patch not available yet, sorry"
    # echo "Applying BFS scheduler patch"
    # patch -Np1 -i ${srcdir}/${file_bfs} || { echo "Failed BFS"; return 1 ; }
    fi
    # --> BFQ
    if [ $BFQ_IO_SCHEDULER = "y" ] ; then
    msg "Patching source with BFQ patches"
    for i in $(ls ${srcdir}/000*.patch); do
    patch -Np1 -i $i
    done
    fi
    # Some chips detect a ghost TV output
    # mailing list discussion: http://lists.freedesktop.org/archives/intel-gfx/2011-April/010371.html
    # Arch Linux bug report: FS#19234
    # It is unclear why this patch wasn't merged upstream, it was accepted,
    # then dropped because the reasoning was unclear. However, it is clearly
    # needed.
    #patch -Np1 -i "${srcdir}/i915-fix-ghost-tv-output.patch"
    # set DEFAULT_CONSOLE_LOGLEVEL to 4 (same value as the 'quiet' kernel param)
    # remove this when a Kconfig knob is made available by upstream
    # (relevant patch sent upstream: https://lkml.org/lkml/2011/7/26/227)
    patch -Np1 -i "${srcdir}/change-default-console-loglevel.patch"
    if [ "${CARCH}" = "x86_64" ]; then
    cat "${srcdir}/config.x86_64" > ./.config
    else
    cat "${srcdir}/config" > ./.config
    fi
    # use custom config instead
    if [ -n "${use_config}" ] ; then
    echo "Using config: '${use_config}'"
    cat "${use_config}" > ./.config
    make oldconfig
    fi
    # use existing config.gz
    if [ "$use_config_gz" = "1" ]; then
    zcat /proc/config.gz > ./.config
    make oldconfig
    fi
    if [ "${_kernelname}" != "" ]; then
    sed -i "s|CONFIG_LOCALVERSION=.*|CONFIG_LOCALVERSION=\"${_kernelname}\"|g" ./.config
    fi
    # set extraversion to pkgrel
    sed -ri "s|^(EXTRAVERSION =).*|\1 -${pkgrel}|" Makefile
    # hack to prevent output kernel from being marked as dirty or git
    #chmod +x ${srcdir}/linux-${_basekernel}/scripts/setlocalversion
    #sed 's/head=`git rev-parse --verify --short HEAD 2>\/dev\/null`/0/' \
    # ${srcdir}/linux-${_basekernel}/scripts/setlocalversion \
    # > ${srcdir}/linux-${_basekernel}/scripts/setlocalversion.new
    #mv ${srcdir}/linux-${_basekernel}/scripts/setlocalversion.new \
    # ${srcdir}/linux-${_basekernel}/scripts/setlocalversion
    # get kernel version
    make prepare
    # load configuration
    # Configure the kernel. Replace the line below with one of your choice.
    if [ "$gconfig" = "1" ]; then
    make gconfig
    else
    if [ "$xconfig" = "1" ]; then
    make xconfig
    else
    if [ "$menuconfig" = "1" ]; then
    make menuconfig
    fi
    fi
    fi
    yes "" | make config
    make prepare # Necessary in case config has been changed
    # build!
    make ${MAKEFLAGS} bzImage modules
    package_linux-rt-ice() {
    KARCH=x86
    cd ${srcdir}/linux-${_basekernel}
    if [ "$keep_source_code" = "1" ]; then
    echo -n "Copying source code..."
    # Keep the source code
    cd $startdir
    mkdir -p $pkgdir/usr/src || return 1
    cp -a ${srcdir}/linux-${_basekernel} $pkgdir/usr/src/linux-${_kernver} || return 1
    #Add a link from the modules directory
    mkdir -p $pkgdir/lib/modules/${_kernver} || return 1
    cd $pkgdir/lib/modules/${_kernver} || return 1
    rm -f source
    ln -s ../../../usr/src/linux-${_kernver} source || return 1
    echo "OK"
    fi
    # get kernel version
    _kernver="$(make kernelrelease)"
    mkdir -p "${pkgdir}"/{lib/modules,lib/firmware,boot}
    make INSTALL_MOD_PATH="${pkgdir}" modules_install
    cp arch/$KARCH/boot/bzImage "${pkgdir}/boot/vmlinuz-${pkgname}"
    # add vmlinux
    install -D -m644 vmlinux "${pkgdir}/usr/src/linux-${_kernver}/vmlinux"
    # install fallback mkinitcpio.conf file and preset file for kernel
    install -D -m644 "${srcdir}/${pkgname}.preset" "${pkgdir}/etc/mkinitcpio.d/${pkgname}.preset"
    # set correct depmod command for install
    sed \
    -e "s/KERNEL_NAME=.*/KERNEL_NAME=${_kernelname}/g" \
    -e "s/KERNEL_VERSION=.*/KERNEL_VERSION=${_kernver}/g" \
    -i "${startdir}/${pkgname}.install"
    sed \
    -e "s|ALL_kver=.*|ALL_kver=\"/boot/vmlinuz-${pkgname}\"|g" \
    -e "s|default_image=.*|default_image=\"/boot/initramfs-${pkgname}.img\"|g" \
    -e "s|fallback_image=.*|fallback_image=\"/boot/initramfs-${pkgname}-fallback.img\"|g" \
    -i "${pkgdir}/etc/mkinitcpio.d/${pkgname}.preset"
    echo -e "# DO NOT EDIT THIS FILE\nALL_kver='${_kernver}'" > ${pkgdir}/etc/mkinitcpio.d/${pkgname}.kver
    # remove build and source links
    rm -f "${pkgdir}"/lib/modules/${_kernver}/{source,build}
    # remove the firmware
    rm -rf "${pkgdir}/lib/firmware"
    # gzip -9 all modules to save 100MB of space
    find "${pkgdir}" -name '*.ko' -exec gzip -9 {} \;
    # make room for external modules
    ln -s "../extramodules-${_basekernel}${_kernelname:--rt-ice}" "${pkgdir}/lib/modules/${_kernver}/extramodules"
    # add real version for building modules and running depmod from post_install/upgrade
    mkdir -p "${pkgdir}/lib/modules/extramodules-${_basekernel}${_kernelname:--rt-ice}"
    echo "${_kernver}" > "${pkgdir}/lib/modules/extramodules-${_basekernel}${_kernelname:--rt-ice}/version"
    mkdir -p "${pkgdir}/lib/modules/${_kernver}"
    cd "${pkgdir}/lib/modules/${_kernver}"
    ln -sf ../../../usr/src/linux-${_kernver} build
    cd "${srcdir}/linux-${_basekernel}"
    install -D -m644 Makefile \
    "${pkgdir}/usr/src/linux-${_kernver}/Makefile"
    install -D -m644 kernel/Makefile \
    "${pkgdir}/usr/src/linux-${_kernver}/kernel/Makefile"
    install -D -m644 .config \
    "${pkgdir}/usr/src/linux-${_kernver}/.config"
    mkdir -p "${pkgdir}/usr/src/linux-${_kernver}/include"
    for i in acpi asm-generic config crypto drm generated linux math-emu \
    media net pcmcia scsi sound trace video xen; do
    cp -a include/${i} "${pkgdir}/usr/src/linux-${_kernver}/include/"
    done
    # copy arch includes for external modules
    mkdir -p "${pkgdir}/usr/src/linux-${_kernver}/arch/x86"
    cp -a arch/x86/include "${pkgdir}/usr/src/linux-${_kernver}/arch/x86/"
    # copy files necessary for later builds, like nvidia and vmware
    cp Module.symvers "${pkgdir}/usr/src/linux-${_kernver}"
    cp -a scripts "${pkgdir}/usr/src/linux-${_kernver}"
    # fix permissions on scripts dir
    chmod og-w -R "${pkgdir}/usr/src/linux-${_kernver}/scripts"
    mkdir -p "${pkgdir}/usr/src/linux-${_kernver}/.tmp_versions"
    mkdir -p "${pkgdir}/usr/src/linux-${_kernver}/arch/${KARCH}/kernel"
    cp arch/${KARCH}/Makefile "${pkgdir}/usr/src/linux-${_kernver}/arch/${KARCH}/"
    if [ "${CARCH}" = "i686" ]; then
    cp arch/${KARCH}/Makefile_32.cpu "${pkgdir}/usr/src/linux-${_kernver}/arch/${KARCH}/"
    fi
    cp arch/${KARCH}/kernel/asm-offsets.s "${pkgdir}/usr/src/linux-${_kernver}/arch/${KARCH}/kernel/"
    # add headers for lirc package
    mkdir -p "${pkgdir}/usr/src/linux-${_kernver}/drivers/media/video"
    cp drivers/media/video/*.h "${pkgdir}/usr/src/linux-${_kernver}/drivers/media/video/"
    for i in bt8xx cpia2 cx25840 cx88 em28xx et61x251 pwc saa7134 sn9c102; do
    mkdir -p "${pkgdir}/usr/src/linux-${_kernver}/drivers/media/video/${i}"
    cp -a drivers/media/video/${i}/*.h "${pkgdir}/usr/src/linux-${_kernver}/drivers/media/video/${i}"
    done
    # add docbook makefile
    install -D -m644 Documentation/DocBook/Makefile \
    "${pkgdir}/usr/src/linux-${_kernver}/Documentation/DocBook/Makefile"
    # add dm headers
    mkdir -p "${pkgdir}/usr/src/linux-${_kernver}/drivers/md"
    cp drivers/md/*.h "${pkgdir}/usr/src/linux-${_kernver}/drivers/md"
    # add inotify.h
    mkdir -p "${pkgdir}/usr/src/linux-${_kernver}/include/linux"
    cp include/linux/inotify.h "${pkgdir}/usr/src/linux-${_kernver}/include/linux/"
    # add wireless headers
    mkdir -p "${pkgdir}/usr/src/linux-${_kernver}/net/mac80211/"
    cp net/mac80211/*.h "${pkgdir}/usr/src/linux-${_kernver}/net/mac80211/"
    # add dvb headers for external modules
    # in reference to:
    # http://bugs.archlinux.org/task/9912
    mkdir -p "${pkgdir}/usr/src/linux-${_kernver}/drivers/media/dvb/dvb-core"
    cp drivers/media/dvb/dvb-core/*.h "${pkgdir}/usr/src/linux-${_kernver}/drivers/media/dvb/dvb-core/"
    # and...
    # http://bugs.archlinux.org/task/11194
    #mkdir -p "${pkgdir}/usr/src/linux-${_kernver}/include/config/dvb/"
    #cp include/config/dvb/*.h "${pkgdir}/usr/src/linux-${_kernver}/include/config/dvb/"
    # add dvb headers for http://mcentral.de/hg/~mrec/em28xx-new
    # in reference to:
    # http://bugs.archlinux.org/task/13146
    mkdir -p "${pkgdir}/usr/src/linux-${_kernver}/drivers/media/dvb/frontends/"
    cp drivers/media/dvb/frontends/lgdt330x.h "${pkgdir}/usr/src/linux-${_kernver}/drivers/media/dvb/frontends/"
    cp drivers/media/video/msp3400-driver.h "${pkgdir}/usr/src/linux-${_kernver}/drivers/media/dvb/frontends/"
    # add dvb headers
    # in reference to:
    # http://bugs.archlinux.org/task/20402
    mkdir -p "${pkgdir}/usr/src/linux-${_kernver}/drivers/media/dvb/dvb-usb"
    cp drivers/media/dvb/dvb-usb/*.h "${pkgdir}/usr/src/linux-${_kernver}/drivers/media/dvb/dvb-usb/"
    mkdir -p "${pkgdir}/usr/src/linux-${_kernver}/drivers/media/dvb/frontends"
    cp drivers/media/dvb/frontends/*.h "${pkgdir}/usr/src/linux-${_kernver}/drivers/media/dvb/frontends/"
    mkdir -p "${pkgdir}/usr/src/linux-${_kernver}/drivers/media/common/tuners"
    cp drivers/media/common/tuners/*.h "${pkgdir}/usr/src/linux-${_kernver}/drivers/media/common/tuners/"
    # add xfs and shmem for aufs building
    mkdir -p "${pkgdir}/usr/src/linux-${_kernver}/fs/xfs"
    mkdir -p "${pkgdir}/usr/src/linux-${_kernver}/mm"
    cp fs/xfs/xfs_sb.h "${pkgdir}/usr/src/linux-${_kernver}/fs/xfs/xfs_sb.h"
    # copy in Kconfig files
    for i in `find . -name "Kconfig*"`; do
    mkdir -p "${pkgdir}"/usr/src/linux-${_kernver}/`echo ${i} | sed 's|/Kconfig.*||'`
    cp ${i} "${pkgdir}/usr/src/linux-${_kernver}/${i}"
    done
    chown -R root.root "${pkgdir}/usr/src/linux-${_kernver}"
    find "${pkgdir}/usr/src/linux-${_kernver}" -type d -exec chmod 755 {} \;
    # strip scripts directory
    find "${pkgdir}/usr/src/linux-${_kernver}/scripts" -type f -perm -u+w 2>/dev/null | while read binary ; do
    case "$(file -bi "${binary}")" in
    *application/x-sharedlib*) # Libraries (.so)
    /usr/bin/strip ${STRIP_SHARED} "${binary}";;
    *application/x-archive*) # Libraries (.a)
    /usr/bin/strip ${STRIP_STATIC} "${binary}";;
    *application/x-executable*) # Binaries
    /usr/bin/strip ${STRIP_BINARIES} "${binary}";;
    esac
    done
    # remove unneeded architectures
    if [ "$keep_source_code" = "0" ]; then
    rm -rf ${pkgdir}/usr/src/linux-${_kernver}/arch/{alpha,arm,arm26,avr32,blackfin,cris,frv,h8300,ia64,m32r,m68k,m68knommu,mips,microblaze,mn10300,parisc,powerpc,ppc,s390,sh,sh64,sparc,sparc64,um,v850,xtensa}
    fi
    [ku@ku-la linux-rt-ice]$ makepkg -R
    ==> Making package: linux-rt-ice 2.6.33.9-1 (Sat Jan 21 13:33:09 NOVT 2012)
    ==> Removing existing pkg/ directory...
    ==> Entering fakeroot environment...
    ==> Starting package_linux-rt-ice()...
    Copying source code...OK
    make: *** No rule to make target `kernelrelease'. Stop.
    ==> ERROR: A failure occurred in package_linux-rt-ice().
    Aborting...
    I remounted it with defaults options as stressed above topic and try again makepkg -R but still no joy
    I looked at kernel.release
    2.6.33-1-rt-ice
    Any ideas?
    Last edited by noMaster (2012-01-21 15:35:54)

    I suggested to build package again. And finally I got it. I guess the problem was in mounting options so was needed to began from the very start

  • No rule to make target ... ???

    When running makepkg I get the following:
    %makepkg
    ==> Making package: broadcom-wl 5.60.246.6-1 (Fri Dec 17 20:12:35 PST
    2010)
    ==> Checking Runtime Dependencies...
    ==> Checking Buildtime Dependencies...
    ==> Retrieving Sources...
    -> Found hybrid-portsrc_x86-64_v5.60.246.6.tar.gz
    -> Found license.patch
    -> Found semaphore.patch
    ==> Validating source files with sha1sums...
    hybrid-portsrc_x86-64_v5.60.246.6.tar.gz ... Passed
    license.patch ... Passed
    semaphore.patch ... Passed
    ==> Extracting Sources...
    -> Extracting hybrid-portsrc_x86-64_v5.60.246.6.tar.gz with bsdtar
    ==> Removing existing pkg/ directory...
    ==> Starting build()...
    patching file src/wl/sys/wl_linux.c
    patching file src/wl/sys/wl_iw.h
    make: Entering directory `/usr/src/linux-2.6.36-ARCH'
    make: *** No rule to make target `Setup/broadcom-wl/src'. Stop.
    make: Leaving directory `/usr/src/linux-2.6.36-ARCH'
    Aborting...
    I can't figure out how to fix this.  I'm not sure how to enter in a rule nor where to put it.  I've had no issues installing this package in previous versions but for some reason after upgrading the kernel and trying to use the package from the AUR broadcom-wl 5.60.246.6-1 it refuses to work.
    Any ideas?

    mwknowles92, don't cross-post: https://bbs.archlinux.org/viewtopic.php … 78#p867078
    See: https://wiki.archlinux.org/index.php/Fo … ss-Posting
    Closed.

  • Relinking forms executables results in "No rule to make target"

    In the course of installing Forms 11.1.1.4 on weblogic 11gR1 (10.3.4), I ran into an issue after installing patch p9473270 (refer to Oracle Doc ID 1276725.1). The ERP system vendor recommends relinking the forms executables after applying this patch with the following commands:
    Relink the Oracle forms binaries:
    cd $ORACLE_HOME/forms/lib
    make -f ins_forms.mk frmcmp_install
    make –f ins_forms.mk frmbld_install
    make –f ins_forms.mk frmcmpb_install
    make –f ins_forms.mk frmweb_install
    The second command resulted in an error:
    $ make –f ins_forms.mk frmbld_install
    make: *** No rule to make target `–f'. Stop.
    After researching this issue, I tried the following command :
    $ relink forms
    This successfully relinked all forms executables.
    -rwx------ 1 oracle dba 12510433 Jan 20 20:11 frmcmp
    -rwx------ 1 oracle dba 20547 Jan 20 20:11 frmctrl
    -rwx------ 1 oracle dba 13721638 Jan 20 20:11 frmcmp_batch
    -rwx------ 1 oracle dba 12510975 Jan 20 20:11 frmbld
    -rwx------ 1 oracle dba 15275747 Jan 20 20:11 frmweb
    Any thoughts on the usage of "relink forms" vs. the make command? Or why I was encountering the error " No rule to make target"?
    Bill

    Hi,
    Please see {thread:id=2426792}, appears that 11gR2 is not certified on Linux 6.
    Cheers,

  • Rebuilding Qt4 - No rule to make target..

    Hello!
    I want to make an edit to one source file in qt4 from ABS. - it is gui/kernel/qclipboard_x11.cpp.
    There's a 10.000 ms timeout, and I need to change it to something smaller, maybe 1.000 ms.
    (It defines how long I have to wait after closing Okular, before I can start another instance. I tried to google a better solution, but there's no useful info.).
    I've added a sed command to the PKGBUILD that does it, started the build, and it crashed with this:
    make[1]: *** No rule to make target 'util/qabstractsystemtrayiconsys.cpp', needed by '.obj/release-shared/qabstractsystemtrayiconsys.o'. Stop.
    make[1]: *** Waiting for unfinished jobs....
    moc util/qcompleter.h
    moc graphicsview/qgraphicswidget.h
    make[1]: Leaving directory '/home/ondra/tmp/abs/src/qt-everywhere-opensource-src-4.8.6/src/gui'
    Makefile:423: recipe for target 'sub-gui-make_default-ordered' failed
    make: *** [sub-gui-make_default-ordered] Error 2
    ==> ERROR: A failure occurred in build().
    Aborting...
    Also, I'm not too happy with having to rebuild the entire Qt, but maybe that's the only way to get my changes working.
    Any idea how to fix this error?
    For more details, the entire log from this failed build can be found here: http://pastebin.com/knkd3dA8
    Last edited by MightyPork (2014-12-21 18:33:57)

    You're going to have to provide way more information - what does your project look like? Where did you get it? Did you write the makefile yourself?

  • Error : ***no rule to make target all

    Hi,
    When I build my project in Qnx  i encounter this error:
    *** No rule to make target all
    *** No rule to make target clean
     it's an immediate question .please help me
    thanks.
    Message Edited by zamin on 09-03-2007 04:02 AM

    Hi zamin-
    Are you using the Makefile supplied with the MHDDK examples?  Which examples are you trying to build?  Are you attempting to build using 'make' from the command line, or from some sort of QNX development environment?  If you are building from the command line, which directory are you in when you run 'make'?
    Thanks-
    Tom W
    National Instruments

  • Make problem: no rule to make target modules

    i have dell xps 15z laptop with 64bit arch installed. i would like to install bbswitch, so i can use the optimus nvidia card. I downloaded from AUR the makefile and run makepkg. I got this error that i cannotfind out what is causing:
    ==> Starting build()...
    make -C /lib/modules/3.2.8-1-ARCH/build M="$(pwd)" modules
    make[1]: Entering directory `/lib/modules/3.2.8-1-ARCH/build'
    make[1]: *** No rule to make target `modules'.  Stop.
    make[1]: Leaving directory `/lib/modules/3.2.8-1-ARCH/build'
    make: *** [default] Error 2
    ==> ERROR: A failure occurred in build().
        Aborting...
    Can anyone help me please?
    Last edited by Empy (2012-03-04 21:33:07)

    Do you have linux-headers installed?

  • Make: *** No rule to make target `main.o', needed by `empty_application_0.elf'. Stop.

    Hi !! I'm programming in sdk 13.1, device : virtex V ml 507, processor microblaze, it shows me this error : 
    make: *** No rule to make target `main.o', needed by `empty_application_0.elf'. Stop.

    I have a similar thing when I run a C Simulation for a OpenCL Kernel for matrix multiplication in Xilinx Vivado High Level Synthesis. My CSim.log is as follows:
    Compiling(apcc) ../../../mat_multi_opencl_test.c in debug mode
    @I [LIC-101] Checked out feature [VIVADO_HLS]
    @I [HLS-10] Running 'f:/Xilinx/Vivado_HLS/2015.1/bin/unwrapped/win64.o/apcc.exe'
    for user 'Pratheeksha' on host 'pratheeksha' (Windows NT_amd64 version 6.2) on Mon Jul 06 12:17:20 +0530 2015
    in directory 'C:/Users/Pratheevivek1/Documents/mat_multi_opencl/solution1/csim/build'
    @I [APCC-3] Tmp directory is apcc_db
    @I [APCC-1] APCC is done.
    @I [LIC-101] Checked in feature [VIVADO_HLS]
    Compiling(apcc) matrix_mult_sdaccel.c in debug mode
    @I [LIC-101] Checked out feature [VIVADO_HLS]
    @I [HLS-10] Running 'f:/Xilinx/Vivado_HLS/2015.1/bin/unwrapped/win64.o/apcc.exe'
    for user 'Pratheeksha' on host 'pratheeksha' (Windows NT_amd64 version 6.2) on Mon Jul 06 12:17:27 +0530 2015
    in directory 'C:/Users/Pratheevivek1/Documents/mat_multi_opencl/solution1/csim/build'
    @I [APCC-3] Tmp directory is apcc_db
    @I [APCC-1] APCC is done.
    @I [LIC-101] Checked in feature [VIVADO_HLS]
    make: *** No rule to make target `tb_stub.c', needed by `obj/tb_stub.o'. Stop.
    @E [SIM-1] CSim file generation failed: compilation error(s).
    What seems to be the error?

  • Fsam7440 makepkg error - no rule to make modules

    Hi there!
    I'm trying to set up a wireless connection on an old Fujitsu Amilo M  7400
    and i'm trying to install the fsam7440 module from the AUR,
    to be able to control the wlan-switch.
    I don't even know if it's gonna work, but it is the only idea i got so far.
    When running makepkg, i get the error
    make: *** /lib/moduels/3.8.4-1ARCH/build: No such file or directory. Stop
    When i create the not-found build folder i get the error
    make[1]: *** No rule to make target `modules'. Stop.
    The package being flagged as "orphaned", i also tried to *make*
    the package provided on the projects page,
    getting the same error messages.
    Any thoughts?
    Thanks in advance!
    Levent

    Last Updated: 2007-05-07 00:29
    Fsam7440 is a module for Linux Kernel 2.4/2.6 that allows change the status of wireless card's radio on Fujitsu-Siemens Amilo M 7440.
    that driver doesn't appear to have had any updates for almost 6 years.
    you could try building 1 of the remaining 2.6 longterm (like 2.6.32.60) kernels from source.

  • CPAN - "No rule to make target ..."

    I'm trying to install perl modules using CPAN on Snow Leopard Server. Regardless of what I attempt to install, I get the error:
    No rule to make target `/System/Library/Perl/5.10.0/darwin-thread-multi-2level/CORE/config.h', needed by `Makefile'. Stop.
    It seems this means that I need the Perl header files. Where can I get/how can I install these files?
    Thanks in advance for any assistance you can offer - I'm a newbie at using CPAN.

    lisfolks wrote:
    Oh, and is there a particular order in which the .pkg files should be installed?
    You shouldn't pick and choose anything in Xcode. Just install it all with the default options.
    Unfortunately, I don't think I can help much. I use Perl mostly on Linux.
    Also, you are using Snow Leopard Server. Perhaps Perl is installed in a different location. That seems unlikely, though. What directories do you have /System/Library/Perl? If your Perl install is incorrect, Xcode isn't going to help. The files you are missing are part of the OS install, not Xcode.

  • "No rule to make target" when compiling a C++ program under Winelib

    I'm trying to compile a C++ program for Windows using Winelib, and it keeps exiting without doing anything with this message:
    make: *** No rule to make target `windows.so', needed by `all'.  Stop.
    I don't think there's anything anywhere in the code or the makefile about "windows.so"... What is this about?

    You're going to have to provide way more information - what does your project look like? Where did you get it? Did you write the makefile yourself?

  • [svn:fx-trunk] 5811: Adding a Flex Builder Flash-Integration and Utilities project to make these files easier for people to work on .

    Revision: 5811
    Author: [email protected]
    Date: 2009-03-31 11:20:19 -0700 (Tue, 31 Mar 2009)
    Log Message:
    Adding a Flex Builder Flash-Integration and Utilities project to make these files easier for people to work on. Flash-Integration is really an intermediate swc that Utilities uses. I've also modified the existing Flex Builder project for flex4tests to build against this new utilities project directly.
    Also change the way FlashIntegration is built--we no longer have a manifest file and just include-classes FlashIntegrationClasses.as.
    QE Notes: -
    Doc Notes: -
    Bugs: -
    Reviewer: Evtim
    tests: -
    Modified Paths:
    flex/sdk/trunk/development/eclipse/flex/flex4test/.actionScriptProperties
    flex/sdk/trunk/frameworks/projects/flash-integration/build.xml
    Added Paths:
    flex/sdk/trunk/development/eclipse/flex/flash-integration/
    flex/sdk/trunk/development/eclipse/flex/flash-integration/.actionScriptProperties
    flex/sdk/trunk/development/eclipse/flex/flash-integration/.flexLibProperties
    flex/sdk/trunk/development/eclipse/flex/flash-integration/.project
    flex/sdk/trunk/development/eclipse/flex/utilities/
    flex/sdk/trunk/development/eclipse/flex/utilities/.actionScriptProperties
    flex/sdk/trunk/development/eclipse/flex/utilities/.flexLibProperties
    flex/sdk/trunk/development/eclipse/flex/utilities/.project
    flex/sdk/trunk/frameworks/projects/flash-integration/src/FlashIntegrationClasses.as
    Removed Paths:
    flex/sdk/trunk/frameworks/projects/flash-integration/manifest.xml

    Thats good news.

  • Solaris 10 sparc - cpan - gcc/make issue

    Hi all,
         I am attempting to install necessary perl modules to run a perl script. I need to use gcc as my compiler and believe I have an issue, also may have a (g)make issue as well. I will copy the output of two install failures, and then my current o conf setup. if someone could help me out I would sincerely appreciate it.
    When trying to install IO::Pty I received the following output.
    cpan[1]> install IO::Pty
    Reading '/.cpan/Metadata'
      Database was generated on Thu, 26 Sep 2013 13:53:03 GMT
    Running install for module 'IO::Pty'
    Running make for T/TO/TODDR/IO-Tty-1.10.tar.gz
      CPAN: checksum security checks disabled because Digest::SHA not installed.
      Please consider installing the Digest::SHA module.
    Scanning cache /.cpan/build for sizes
    ..........................................................................--DONE
    DEL(1/3): /.cpan/build/Data-Dumper-2.145-wR9zqH
    DEL(2/3): /.cpan/build/Time-Local-1.2300-_ZUYVw
    DEL(3/3): /.cpan/build/Time-Local-1.2300-_ZUYVw.yml
      CPAN.pm: Building T/TO/TODDR/IO-Tty-1.10.tar.gz
    Use of uninitialized value in scalar assignment at /usr/perl5/5.8.4/lib/CPAN/Distribution.pm line 1868.
    Use of uninitialized value in scalar assignment at /usr/perl5/5.8.4/lib/CPAN/Distribution.pm line 1869.
    Use of uninitialized value in scalar assignment at /usr/perl5/5.8.4/lib/CPAN/Distribution.pm line 1879.
    Use of uninitialized value in scalar assignment at /usr/perl5/5.8.4/lib/CPAN/Distribution.pm line 1880.
    Now let's see what we can find out about your system
    (logfiles of failing tests are available in the conf/ dir)...
    sh: cc: not found
    ERROR: cannot run the configured compiler 'cc'
    (see conf/compilerok.log). Suggestions:
    1) The complier 'cc' is not in your PATH. Add it
       to the PATH and try again. OR
    2) The compiler isn't installed on your system. Install it. OR
    3) You only have a different compiler installed (e.g. 'gcc').
       Either fix the compiler config in the perl Config.pm
       or install a perl that was built with the right compiler
       (you could build perl yourself with the available compiler).
    Note: this is a system-administration issue, please ask your local
    admin for help. Thank you.
    Warning: No success on command[/usr/perl5/5.8.4/bin/perl Makefile.PL]
      TODDR/IO-Tty-1.10.tar.gz
      /usr/perl5/5.8.4/bin/perl Makefile.PL -- NOT OK
    Running make test
      Make had some problems, won't test
    Running make install
      Make had some problems, won't install
    Could not read metadata file. Falling back to other methods to determine prerequisites
    Failed during this command:
    TODDR/IO-Tty-1.10.tar.gz                     : writemakefile NO '/usr/perl5/5.8.4/bin/perl Makefile.PL' returned status 512
    When trying to install Data::Dumper I received the following output.
    cpan[2]> install Data::Dumper
    Running install for module 'Data::Dumper'
    Running make for S/SM/SMUELLER/Data-Dumper-2.145.tar.gz
    CPAN: checksum security checks disabled because Digest::SHA not installed.
      CPAN.pm: Building S/SM/SMUELLER/Data-Dumper-2.145.tar.gz
    Use of uninitialized value in scalar assignment at /usr/perl5/5.8.4/lib/CPAN/Distribution.pm line 1868.
    Use of uninitialized value in scalar assignment at /usr/perl5/5.8.4/lib/CPAN/Distribution.pm line 1869.
    Use of uninitialized value in scalar assignment at /usr/perl5/5.8.4/lib/CPAN/Distribution.pm line 1879.
    Use of uninitialized value in scalar assignment at /usr/perl5/5.8.4/lib/CPAN/Distribution.pm line 1880.
    Checking if your kit is complete...
    Looks good
    Generating a GNU-style Makefile
    Writing Makefile for Data::Dumper
    Writing MYMETA.yml and MYMETA.json
    Use of uninitialized value in scalar assignment at /usr/perl5/5.8.4/lib/CPAN/Distribution.pm line 2033.
    cp Dumper.pm blib/lib/Data/Dumper.pm
    /usr/perl5/5.8.4/bin/perl /usr/perl5/5.8.4/lib/ExtUtils/xsubpp  -typemap /usr/perl5/5.8.4/lib/ExtUtils/typemap  Dumper.xs > Dumper.xsc && mv Dumper.xsc Dumper.c
    cc -c   -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -xarch=v8 -D_TS_ERRNO -xO3 -xspace -xildoff   -DVERSION=\"2.145\" -DXS_VERSION=\"2.145\" -KPIC "-I/usr/perl5/5.8.4/lib/sun4-solaris-64int/CORE"  -DUSE_PPPORT_H Dumper.c
    /bin/sh: cc: not found
    gmake: *** [Dumper.o] Error 1
      SMUELLER/Data-Dumper-2.145.tar.gz
      /usr/sfw/bin/gmake -- NOT OK
    Running make test
      Can't test without successful make
    Running make install
      Make had returned bad status, install seems impossible
    Failed during this command:
    SMUELLER/Data-Dumper-2.145.tar.gz            : make NO
    cpan[3]> o conf
    $CPAN::Config options from /usr/perl5/5.8.4/lib/CPAN/Config.pm:
        commit             [Commit changes to disk]
        defaults           [Reload defaults from disk]
        help               [Short help about 'o conf' usage]
        init               [Interactive setting of all options]
        applypatch         []
        auto_commit        [0]
        build_cache        [10]
        build_dir          [/.cpan/build]
        build_dir_reuse    [0]
        build_requires_install_policy [yes]
        bzip2              [/usr/bin/bzip2]
        cache_metadata     [1]
        check_sigs         [0]
        colorize_debug     undef
        colorize_output    [0]
        colorize_print     undef
        colorize_warn      undef
        commandnumber_in_prompt [1]
        commands_quote     undef
        connect_to_internet_ok [1]
        cpan_home          [/.cpan]
        curl               undef
        dontload_hash
        dontload_list      undef
        ftp                [/usr/bin/ftp]
        ftp_passive        [1]
        ftp_proxy          [Proxy info removed]
        ftpstats_period    undef
        ftpstats_size      undef
        getcwd             [cwd]
        gpg                []
        gzip               [/usr/bin/gzip]
        halt_on_failure    [0]
        histfile           [/.cpan/histfile]
        histsize           [100]
        http_proxy         [Proxy info removed]
        inactivity_timeout [0]
        index_expire       [1]
        inhibit_startup_message [0]
        keep_source_where  [/.cpan/sources]
        load_module_verbosity [none]
        lynx               []
        make              [/usr/sfw/bin/gmake] I have also tried [/usr/sfw/bin/make] and still the installs fail
        make_arg           []
        make_install_arg   [UNINST=1]
        make_install_make_command [/usr/sfw/bin/gmake] I have also tried [/usr/sfw/bin/make] and still the installs fail
        makepl_arg         []
        mbuild_arg         []
        mbuild_install_arg []
        mbuild_install_build_command [./Build]
        mbuildpl_arg       []
        ncftp              []
        ncftpget           []
        no_proxy           []
        pager              [/usr/bin/less]
        password           undef
        patch              [/usr/bin/patch]
        patches_dir        undef
        perl5lib_verbosity [none]
        prefer_external_tar [0]
        prefer_installer   [MB]
        prefs_dir          [/.cpan/prefs]
        prerequisites_policy [ask]
        proxy_pass         undef
        proxy_user         []
        randomize_urllist  undef
        scan_cache         [atstart]
        shell              [/sbin/sh]
        show_unparsable_versions [0]
        show_upload_date   [0]
        show_zero_versions [0]
        tar                [/usr/sfw/bin/gtar]
        tar_verbosity      [none]
        term_is_latin      [1]
        term_ornaments     [1]
        test_report        [0]
        trust_test_report_history [0]
        unzip              [/usr/bin/unzip]
        urllist
            0 [http://cpan.cse.msu.edu/]
            1 [http://httpupdate23.cpanel.net/CPAN/]
            2 [http://cpan.llarian.net/]
        use_sqlite         [0]
        username           undef
        version_timeout    [15]
        wait_list          undef
        wget               [/usr/sfw/bin/wget]
        yaml_load_code     [0]
        yaml_module        [YAML]
    I would appreciate any assistance,
    Thank you in advance,
    Steve O

    s@mira123 wrote:
    Dear All,
    I am trying to set the date as per the time zone,
    I have succeeded doing that on solaris 10 x86 server after i modified the /etc/TIMEZONE file and ran the rtc command/etc/TIMEZONE is only read at boot time.
    The rtc command is used to set the real time (bios) clock. It should have no effect on the running clock.
    as i configured the /etc/TIMEZONE, i couldnt run the rtc command and figured that it is for X86
    what is the alternative on SPARC?There is no alternative. x86 has a tradition of running the BIOS clock in local time. The rtc program allows you to continue doing that, which is handy if you multi-boot with other operating systems that require that setting (such as windows). As such, the rtc clock needs to be reset when local time changes (usually associated with daylight saving or summer time). If you do not multi-boot with windows, you may wish to set the bios clock to UTC. It makes certain things easier.
    SPARC systems do not multi-boot windows, and the onboard nvram clock always runs in UTC. So the rtc command is not needed.
    The date output is +2 over the timezone taht i have specified
    TZ=Europe/Paris
    CMASK=022
    LANG=en_US.UTF-8Please show output of the following commands:
    TZ=Europe/Paris date
    date
    echo $TZ
    Darren

  • Business Rule form coding issue

    I have two cubes, one for salaries and one for the P&L, called finance. All members are identical between cubes, EXCEPT the department members, in the finance cube there are numbers,
    such as "662", in the Salary cube, all department members begin with "Sal_" which is "Sal_662"
    I want a salary form on save to execute calculations and then get pulled to the finance cube.
    I have a script that works from a finance cube form, but I want the salary cube form to execute the finance cube business rule. The issue is the different names.
    To do a transfer from the finance cube form, the code looks like :
    "DIRXOT" = @XREF("_Salarycube_" ,"DIRSAL","Total_Employee",(@CONCATENATE("SAL_",@NAME(@CURRMBR("Finance Department")))))
    The finance BR XREF adds the "SAL_ to the current member to reference the Salary cube department.
    Trying to reverse this, code it from the salary form point of view
    IF(@CONCATENATE("SAL_",@NAME(@CURRMBR("Finance Department"))) == [gv_Salary_SalDepartment])
    "DIRXOT" = @XREF("_Salarycube_" ,"PRDSAL","Total_Employee", [gv_Salary_SalDepartment]);
    But no validation. . . any suggestions as to what I am missing?
    thanks

    Thanks, i didn't pose the question quite correctly. . . The IF statement won't validate:
    IF(@CONCATENATE("SAL_",@NAME(@CURRMBR("Finance Department"))) == @NAME([gv_Salary_SalDepartment]))
    or
    IF(@CONCATENATE("SAL_",@NAME(@CURRMBR("Finance Department"))) == [gv_Salary_SalDepartment])
    I have to do a NAME comparison, and I don't know how to do that, with the mathematical operators. . .
    because there is no matching member between cubes for a numerical match. . .
    So I need to return TRUE when finance cube Member "662" equals salary cube Member "Sal_662" by adding "Sal_" to the finance member and then doing the comparison.
    I think it can be done, but not sure how. . . [gv_Salary_SalDepartment] is the global variable from the salary cube form passing the salary cube member to the business rule.
    thanks in advance. . . . .

  • [SOLVED] ipager does not build. Patched! Now it does.

    Dig in, children. ipager really is the coolest little thing!
    Some thanks should go to berbae. I just mashed up an AUR comment post of his with a little code fix I located in a blog post at the confignewton tech blog (dittoThanks).
    This patch supercedes the two other patches that package maintainer wakwanza is shipping with ipager-1.1.0-8. To clarify... Please swap out both of those patches (ipager.patch + ipager-gcc43.patch), instead using ipager-1.1.0-20120429.patch for a flawless build. (3 warnings of deprecation + 1 harmless other warning remain, though)
       ipager-1.1.0-20120429.patch:
    --- SConstruct.orig 2005-11-06 05:23:24.000000000 -0600
    +++ SConstruct 2012-04-29 06:59:11.927253922 -0500
    @@ -7,15 +7,16 @@
    # options
    ipager_optfile = [ 'scons.opts', 'user.opts' ]
    -ipager_options = Options(ipager_optfile)
    -ipager_options.AddOptions(
    - BoolOption('debug', 'build debug version', 0),
    - BoolOption('debug_events', 'debug xserve events', 0),
    - BoolOption('xinerama', 'support xinerama', 0),
    +ipager_options = Variables(ipager_optfile)
    +ipager_options.AddVariables(
    + BoolVariable('debug', 'build debug version', 0),
    + BoolVariable('debug_events', 'debug xserve events', 0),
    - PathOption('PREFIX', 'install-path base', '/usr/local'),
    - PathOption('DESTDIR', 'install to $DESTDIR/$PREFIX', '/')
    + BoolVariable('xinerama', 'support xinerama', 0),
    +
    + PathVariable('PREFIX', 'install-path base', '/usr'),
    + PathVariable('DESTDIR', 'install to $DESTDIR/$PREFIX', '/')
    @@ -31,10 +32,10 @@
    ipager_env = Environment(options = ipager_options, ENV = os.environ)
    ipager_env.Append(
    - CPPFLAGS = [ '-Wall' ],
    - CPPPATH = [ '/usr/X11R6/include' ],
    - LIBPATH = ['/usr/X11R6/lib']
    + CPPFLAGS = [ '-Wall', '-march=native', '-O' ],
    + CPPPATH = [ '/usr/include' ],
    + LIBPATH = [ '/usr/lib' ]
    +)
    ipager_options.Update(ipager_env)
    @@ -115,11 +116,10 @@
    else:
    print "yes"
    ipager_env.AppendUnique(
    - CPPPATH = imlib2_env.Dictionary()['CPPPATH'],
    - CCFLAGS = imlib2_env.Dictionary()['CCFLAGS'],
    - LIBPATH = imlib2_env.Dictionary()['LIBPATH'],
    - LIBS = imlib2_env.Dictionary()['LIBS']
    + CPPPATH = imlib2_env.Dictionary().get('CPPPATH'),
    + CCFLAGS = imlib2_env.Dictionary().get('CCFLAGS'),
    + LIBPATH = imlib2_env.Dictionary().get('LIBPATH'),
    + LIBS = imlib2_env.Dictionary().get('LIBS')
    conf.Finish()
    --- iconfig.cpp.orig 2012-04-28 19:34:36.902151855 -0500
    +++ iconfig.cpp 2012-04-28 18:31:28.000000000 -0500
    @@ -30,11 +30,11 @@
    #include <iostream>
    #include <fstream>
    #include <sstream>
    +#include <cstdlib>
    #include <sys/stat.h>
    #include <sys/types.h>
    +using namespace std;
    template <class T>
    bool from_string(T &t,
    --- ipager.cpp.orig 2012-04-28 19:34:36.928818549 -0500
    +++ ipager.cpp 2012-04-28 18:43:26.000000000 -0500
    @@ -31,6 +31,7 @@
    #include <iostream>
    #include <string>
    +#include <unistd.h>
    using namespace std;
    #include "pager.h"
    --- pager.cpp.orig 2012-04-28 19:34:36.928818549 -0500
    +++ pager.cpp 2012-04-28 19:07:28.000000000 -0500
    @@ -266,13 +266,13 @@
    /* Window updates go here */
    if (m_window_update.updateNetWindowList())
    updateNetWindowList();
    - if (m_window_update.displayIcons())
    - if (m_window_update.motion())
    + if (m_window_update.displayIcons()) {
    + if (m_window_update.motion()) {
    displayIcons(m_window_update.getX(), m_window_update.getY());
    - else
    + } else {
    displayIcons();
    + }
    + }
    /* ImLib updates go here */
    --- wm.cpp.orig 2012-04-28 19:34:36.928818549 -0500
    +++ wm.cpp 2012-04-28 18:42:07.000000000 -0500
    @@ -27,7 +27,9 @@
    #include <time.h>
    #include "atoms.h"
    +#include <cstdlib>
    +using namespace std;
    WM * WM::m_instance = 0;
    bool WM::x_error = false;
    This md5sum is what you'll get, IF you'll please add a newline at the patch EOF.
    f147f6a4ec3f8779bdc1c12cfbd5e03f ipager-1.1.0-20120429.patch
    Note: I messed with 3 pastebin sites, and now these \[code\] tags, never once able to successfully share without the truncation of the trailing newline at EOF. Hours of learning (yes, googling) how not to do it properly. Anyone care to point me to a non-truncating solution?  EDIT: [SOLVED] The patch program will ignore lines beginning with '#'. The solution is obvious, after re-reading the manual.
    P.S. My first post! (pat self on back) Sorry for my excellent english. :]
    Last edited by zero2cx (2012-04-29 20:10:01)

    berbae wrote:Thank you for sharing this.
    But it would be nice to have the maintainer wakwanza make the changes in AUR and increment the package release to 1.1.0-9
    Could you send a mail to him, and if there is no answer in one month, ask a TU in the AUR-general mailing list to orphan the package.
    And then you or someone else can adopt it and make the changes.
    You're welcome.
    wakwanza has been notified and on the clock since yesterday a.m. The aur commenting system generates an email to the maintainer with every new comment, I've read. But since this package's recent maintenance history is sketchy at best, I reached out to him/her myself. We will wait now.
    berbae wrote:
    Also you should have posted the link of the blog you found, but here it is: http://confignewton.com/?p=152
    I didn't try to rebuild the package recently, I presume it doesn't build with actual build chain tools...
    I will try your patch, but I prefer first that the maintainer updates the package in AUR to 1.1.0-9 with your modifications.
    Thank you for the link. I did not want to cross any lines into website solicitation, so I proceeded too catiously there.
    Yes, please try this and post back.
    [EDIT]: Awesome, wakwanza! --> Fresh ipager available: https://aur.archlinux.org/packages.php?ID=5415
    Last edited by zero2cx (2012-05-01 21:00:31)

Maybe you are looking for

  • Store and display value in array

    Hello Experts! I need help with outputting a report that caculate the cost base on the quantities  from 1 to 100  ( SummaryOfCost = QtyCost * Qty ). I have tried to implement this with an array but always get "A subscript must be between 1 and the si

  • Condition in BI 7.0 query works in BPS layout?

    Hello Experts I know in BI 7.0, it is possible to define BW query with input-enabled feature, and BI integrated planning can use this query for input layout. But I wonder whether the "condition" for BW query(old BW query feature to restrict on keyfgs

  • R12 DBI information in OBIEE...

    Hello all, We have completed Daily Business Intelligence in R12 EBS. Now I want to bring the same dashboard and Information in OBIEE 10g. Please guide me to achieve this task. Thanks and Regards, Muthu

  • Issue with DTMF for TBAT

    We  have noticed that something changed between ICM 7.5 and 8.5 and/or CVP  7.0 and 8.5. We have one or two situations where a call comes into the  CVP Ingress Gateway, does the normal CUSP>CVP stuff, kicks off an ICM  script and ICM immediately resp

  • Can not download sticky_hide_show_0.9.zip

    Hi, i want download sticky_hide_show_0.9.zip in the sample code at Application express web site, but i get the errors 404 : http://www.oracle.com/errors/404.html Thanks for Help.