Works great manually, makepkg doesn't errors out

I'm working on building subversion, I've modified and stock PKGBUILD a little but as it stands it won't work. Here is part of the PKGBUILD, very plain:
./configure --prefix=/usr --with-apr=/usr --with-apr-util=/usr --with-zlib --with-neon=/usr
make || return 1
make DESTDIR=$startdir/pkg install || return 1 # won't make it past here
Now the annoying thing is, if I cd src/subversion-x.y.z and run this:
make DESTDIR=/var/abs/testing/devel/subversion/pkg install
it works great, puts the files where they're supposed to be and is fine. Obviously the install part is returning a code somewhere that makepkg thinks is an error but how do I go about finding where and fixing it? echo $? after makpkg fails shows the exit code of whatever (I'm no pro at this) is '2'. Here are the last few lines of output from makepkg:
/var/abs/testing/devel/subversion/src/subversion-1.3.1/ac-helpers/install-sh -c .libs/libsvn_fs_fs-1.lai /var/abs/testing/devel/subversion/pkg/usr/lib/libsvn_fs_fs-1.la
/var/abs/testing/devel/subversion/src/subversion-1.3.1/ac-helpers/install-sh -c .libs/libsvn_fs_fs-1.a /var/abs/testing/devel/subversion/pkg/usr/lib/libsvn_fs_fs-1.a
ranlib /var/abs/testing/devel/subversion/pkg/usr/lib/libsvn_fs_fs-1.a
chmod 644 /var/abs/testing/devel/subversion/pkg/usr/lib/libsvn_fs_fs-1.a
libtool: install: warning: remember to run `libtool --finish /usr/lib'
Where about should I start looking for a way to fix this? Sorry if this is a noob question but I shell is not something I have my head around yet very well
Thanks

always use relative paths such as
make PREFIX=$startdir/pkg/usr install
can you post the complete PKGBUILD?

Similar Messages

  • My printer works great but I keep getting error messages from HP Solutions Center

    I'm using an HP Officejet J6480 All in One Printer on a Windows 7 64 Bit machine.  The printer works great but I kept getting error messages from the HP Solutions Center every 15 seconds that popped up making it impossible to do work on my laptop so I uninstalled the Solutions Center to try to fix the problem.  Now the printer won't print. Is there a way to re-install the Solutions Center and get rid of the pop up error messages?

    hello Danagriz, unfortunately the plugin check page lags behind. adobe has released a critical patch for a vulnerability in its flash plugin, which is reportedly already exploited in the wild. therefore firefox will block insecure versions from running by default on websites for your protection.
    https://helpx.adobe.com/security/products/flash-player/apsb14-27.html https://addons.mozilla.org/firefox/blocked/p794
    please update to Adobe Flash Player version 16.0.0.235 as soon as possible, which you can download from http://www.adobe.com/products/flashplayer/distribution3.html (use the windows-exe for plugin-based browsers).
    in order to update java, go to java.com (or if you don't need the plugin you can also uninstall it though the windows control panel)

  • [SOLVED]Netcfg works great manually, but when using the daemon it wont

    I installed netcfg a really long time ago following the arch wiki. When I first installed it and set everything up, it was all working perfectly.
    For the past three or four months Ive been having problems where netcf daemon is failing to connect (home wireless network 256bit wep). It takes about 20 seconds just waiting and eventually says failed. If I log in and run the command manually (sudo netcfg home-wifi) it connect perfectly fine every time.
    Ive tried everything I can think of including different QUIRKS and changing permissions on the profiles but nothing works. I also tried using the netcfg menu but it doesnt work like that either. I went over the wiki page again thinking something might have chnaged, but its all the same. I even reinstalled and configured again but still nothing.
    heres my rc.conf
    # /etc/rc.conf - Main Configuration for Arch Linux
    # LOCALIZATION
    # LOCALE: available languages can be listed with the 'locale -a' command
    # HARDWARECLOCK: set to "UTC" or "localtime", any other value will result
    # in the hardware clock being left untouched (useful for virtualization)
    # TIMEZONE: timezones are found in /usr/share/zoneinfo
    # KEYMAP: keymaps are found in /usr/share/kbd/keymaps
    # CONSOLEFONT: found in /usr/share/kbd/consolefonts (only needed for non-US)
    # CONSOLEMAP: found in /usr/share/kbd/consoletrans
    # USECOLOR: use ANSI color sequences in startup messages
    LOCALE="en_US.UTF-8"
    HARDWARECLOCK="UTC"
    TIMEZONE="America/New_York"
    KEYMAP="us"
    CONSOLEFONT=
    CONSOLEMAP=
    USECOLOR="yes"
    # HARDWARE
    # MOD_AUTOLOAD: Allow autoloading of modules at boot and when needed
    # MOD_BLACKLIST: Prevent udev from loading these modules
    # MODULES: Modules to load at boot-up. Prefix with a ! to blacklist.
    # NOTE: Use of 'MOD_BLACKLIST' is deprecated. Please use ! in the MODULES array.
    MOD_AUTOLOAD="yes"
    #MOD_BLACKLIST=() #deprecated
    MODULES=(acpi-cpufreq cpufreq_ondemand vboxdrv loop)
    # Scan for LVM volume groups at startup, required if you use LVM
    USELVM="no"
    # NETWORKING
    # HOSTNAME: Hostname of machine. Should also be put in /etc/hosts
    HOSTNAME="Arch"
    # Use 'ifconfig -a' or 'ls /sys/class/net/' to see all available interfaces.
    # Interfaces to start at boot-up (in this order)
    # Declare each interface then list in INTERFACES
    # - prefix an entry in INTERFACES with a ! to disable it
    # - no hyphens in your interface names - Bash doesn't like it
    # DHCP: Set your interface to "dhcp" (eth0="dhcp")
    # Wireless: See network profiles below
    #Static IP example
    #eth0="dhcp"
    eth0="dhcp"
    INTERFACES=(eth0)
    # Routes to start at boot-up (in this order)
    # Declare each route then list in ROUTES
    # - prefix an entry in ROUTES with a ! to disable it
    gateway="default gw 192.168.0.1"
    ROUTES=(!gateway)
    # Enable these network profiles at boot-up. These are only useful
    # if you happen to need multiple network configurations (ie, laptop users)
    # - set to 'menu' to present a menu during boot-up (dialog package required)
    # - prefix an entry with a ! to disable it
    # Network profiles are found in /etc/network.d
    # This now requires the netcfg package
    NETWORKS=(home-wifi)
    # DAEMONS
    # Daemons to start at boot-up (in this order)
    # - prefix a daemon with a ! to disable it
    # - prefix a daemon with a @ to start it up in the background
    DAEMONS=(syslog-ng crond hal cpufreq !network net-profiles @netfs @alsa @sensors @mpd)
    What gets me is that it actually takes longer to fail then it does when I manually connect. It times out for like 20 seconds, but when I manually connect its almost instantaneous.
    Last edited by tjwoosta (2010-03-02 05:31:37)

    I had arch installed on my Sony VAIO, had this problem, and then fixed it somehow.  That was several months ago, recently I fried the laptop so I just reinstalled and can't remember.  But now I have a "solution"  haha
    this is kind of silly how I got it to work, though.
    I created another profile "home-wifi-boot" with a short timeout, this is called from rc.conf.
    then I put "/usr/bin/netcfg home-wifi" in my /etc/rc.local  , which is exactly the same but has a 30 sec timeout.
    This just does the same thing as I was doing manually, runs netcfg a second time.  It works for me!
    Last edited by jamba (2010-02-14 15:30:58)

  • Workflow works great, application/plugin doesn't...

    Hi all,
    I am creating a workflow for Aperture and all is well in the workflow but if I try to save the workflow as an application I get a strange issue:
    One step in the flow involves selecting a project and exporting the images as full size Jpeg versions. In the workflow it works perfectly. If I save as an application/script plugin I get a .approject file rather than my jpegs. The application times out after that because the next step requires the Jpegs.
    I can simply run the workflow of course, but I am hoping there might be a better solution for applications or plugins that don't function as their workflow counterparts do.
    Thanks
    Message was edited by: Douglas Suiter

    Any ideas?
    Message was edited by: Douglas Suiter

  • There is a lot of e-learning educational courses that were created with flash technology that works great.  Why doesn't Apple adjust their ipad operating system so it is compatible with accepting flash courses?

    To have to recreate courses in html5 just for apple mobile products is not practical.

    DonatoP wrote:
    I just read that there is a browser Called Photon that is a Flash Player Browser for iPad that you can use with your ipad that will allow you to view flash.
    http://itunes.apple.com/us/app/photon-flash-player-browser/id430200224?mt=8
    Has anyone tried this with flash elearning courses?
    Since the effectiveness of so-called Flash browsers on iOS depends on compatibility with the specific source material, there is really no way anyone could effectively advise you on this. The only way to find out it to try it.

  • Execute custom SQL in DB Adpater errors out in Production - urgent please.

    Hi,
    I get this error when running the process in PROD at invoking delete operation that I'm doing by selecting the execute custom SQL option while defining the DB adapter. It worked fine in TEST environment but errors out in PROD env.
    Any suggestions on why? Its urgent.
    Thanks
    -Prapoorna
    The state of this instance is Faulted
    <messages><input><InvokeDelete_InputVariable><part xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" name="DeleteDataInput_msg"><DeleteDataInput xmlns="http://xmlns.oracle.com/pcbpel/adapter/db/DeleteData"/>
    </part></InvokeDelete_InputVariable></input><fault><remoteFault xmlns="http://schemas.oracle.com/bpel/extension"><part name="code"><code>17410</code>
    </part><part name="summary"><summary>file:/prod/app/bpel/as/bpel/domains/verint/tmp/.bpel_SynchOTLLoad_1.0_0259c5f142631959ec0fb067d23fe98e.tmp/DeleteData.wsdl [ DeleteData_ptt::DeleteData(DeleteDataInput_msg) ] - WSIF JCA Execute of operation 'DeleteData' failed due to: Pure SQL Exception.
    Pure SQL Execute of delete from xxhxc_timeattend_to_otl where report_date >= TRUNC(ADD_MONTHS(sysdate, -1),'MM') failed. Caused by java.sql.SQLException: No more data to read from socket.
    ; nested exception is:
    ORABPEL-11633
    Pure SQL Exception.
    Pure SQL Execute of delete from xxhxc_timeattend_to_otl where report_date >= TRUNC(ADD_MONTHS(sysdate, -1),'MM') failed. Caused by java.sql.SQLException: No more data to read from socket.
    The Pure SQL option is for border use cases only and provides simple yet minimal functionality. Possibly try the "Perform an operation on a table" option instead.
    </summary>
    </part><part name="detail"><detail>No more data to read from socket</detail>
    </part></remoteFault></fault></messages>

    Looks like in production you have much more data than you do in your test environments.
    It could be something wrong with your rollback segments. Is there any other activity happening when this is running?
    What happens when you run this command inside SQLPlus?
    cheers
    James

  • Dreamweaver CS4 not able to preview in new Firefox 6.02 on a PC. Was working great in 6.01 and previous versions. Any sugesstions?

    I use dreamweaver for the PC for the most part of web development and use multiple browsers. Firefox is my primary browser and has been working great for preview. Firefox came out with 6.02 and now I am not able to preview pages in firefox from dreamweaver. Still works in the other browsers.

    I use dreamweaver for the PC for the most part of web development and use multiple browsers. Firefox is my primary browser and has been working great for preview. Firefox came out with 6.02 and now I am not able to preview pages in firefox from dreamweaver. Still works in the other browsers.

  • Ipod Shuffle 3rd gen is working great and is perfect for my needs

    I just wanted to post that my iPod Shuffle 3rd gen is working great. No problems and I love it. I use it mainly for listening to podcasts. As soon as I turn it on it begins on the podcast I last listened to --where I was in the middle of the podcast. I stick the Shuffle in my pocket and all I ever have to do is use the headphone controls to pause, move forward or backward in the podcast, skip to the next one, or go back to the beginning, etc. I also love to be able to use the volume control on the headset without having to fumble around for my Shuffle in my pocket where it is safely tucked and won't get knocked off or damaged. I listen to my Shuffle for a few hours a day when doing yard work, household tasks and driving back and forth to work.
    All the features are working just the way they are supposed to on my Shuffle. There are a bunch of negative posts about the Shuffle and I just wanted to say that mine works great and I enjoy it very much. I have had the Shuffle for 4 weeks and have not had any problems whatsoever. I own several other models of iPods (first version Mini, Video 60gb, Nano 1 & 2, Shuffle 1,2,& 3, Touch) But the handsfree/visual free ability of this 3rd gen Shuffle is great and very useful for me.
    Just my two cents.

    Linda,
    No I just use one earbud in my ear. I put the earbud in my right ear--away from the window side and it is also the one with the in-line controls, so that works great. I don't put it on very loud either.
    If I am not listening to a podcast and just want to hear music I sometimes will plug it into a line-in cable, but then I don't have a choice on what I am listening to. It's not a real problem because I like all the songs I have on it anyway. I can still adjust the volume on the car stereo, so that is the way I do it.
    I am watching closely for any accessories that might allow a headphone splitter to work, but nothing so far. I am sure we will see some useful additions in the near future. And by the way, the earbuds that came with it work great in my ears--never fall out and are comfortable to me.

  • Skype works, iChat doesn't (error -8) -- Why oh why?

    My brother and I had been using both the audio and video features of iChat AV3 with audio for long-distance (US to Japan) communications flawlessly until about a week ago. Neither of us had changed any of our configurations; it was working fine last Thursday evening, and then wasn't working at all following morning.
    We keep getting the mysterious error -8.
    We've been troubleshooting this for most of the past week. We turned our firewalls off. We reconfigured the port settings. We reconfigured our routers. Nothing works. We can connect to each other using the iChat text-messenging feature, but not the audio or video.
    However, both of us CAN connect to the Apple iChat AV test site (appleu3test01) without any difficulty. We never get the error -8 when trying to connect to that. The video loop displays perfectly.
    This morning, after pretty much giving up on iChat, we decided to try Skype. However, we figured it wouldn't work either, since iChat doesn't work.
    To our amazement, Skype worked perfectly.
    What gives? Why can't we use iChat audio but Skype just works?
    Oh, and to add insult to injury, we both paid $99 for a dot-Mac subscription so we could use dot-Mac accounts with iChat.
    Any advice would be GREATLY appreciated.
    Thanks,
    GeeKay

    My daughter has a -8 problem with her Mac Book, no audio or video. She is using a Airport Express with no router and her ISP is using Motorola's Canopy wireless ISP technology.
    So when I called Applecare they had me do multiple things, nothing worked. Then the tech said to verify the MacBook doesn't have a problem hook directly into the ethernet from the ISP. Haven't done that yet but will this weekend.
    Any suggestions out there

  • I have an HP Photosmart Premium C410. It worked great with Mountain Lion, but it doesn't with Mavericks. Can't install any printing s/w even though it's on the network. Anyone know why????

    i have an HP Photosmart Premium C410. It worked great with Mountain Lion, but it doesn't with Mavericks. Can't install any printing s/w even though it's on the network. Anyone know why????

    So, this post, as well written as it is, went totally ignored by the HP personnel that are supposedto be "helping" us poor novices? WOW! No wonder this crap gets thrown out of the house so often.
    I have two HP network printers. An HP Officejet 4500 G510g-m, and a HP Photosmart Premium C410a, and they are the most unreliable pieces of "equipment" that I have in my network. This is absolutely trhe crappiest bunch of junk on the market. The only thing worse than these "devices" is the support from HP for them.
    I also have a HP Photosmart C5280 AIO, and a Deskjet D2345 Printer. I have little, to no, problems with these two. The "flagships" of my network imaging are the worst, of the worst.

  • Applescript works great in leopard, error -10814 in tiger

    im running macs in a active directory domain. we have homefolders for users and they will not auto mount for a specific user group. i have an applescript that will take care of this, but when i run the script in tiger i get error type -10814. i can find that error anywhere. below is the script, like i said, works great in leopard but errors in tiger. both systems are bound to the domain with the same settings. i can manually mount the home folder on either version but want to automate this for users who have no clue what to do.
    tell application "Finder"
    activate
    end tell
    property targetURL : "smb://student-dfs-01/homefolders"
    open location targetURL

    I don't know specifically, but I'd look at using the mount volume command rather than 'open location' for a SMB URL:
    mount volume "smb://student-dfs-01/homefolders"

  • Getting Error Out Of Memory while importing the work repository in ODI 10g

    I exported the work repository from topology of ODI 10g of one DB and tried importing it in the another ODI 10g topology of another DB.While importing i got the error 'Out of Memory' .
    Can somebody suggest me ,how to solve the heap size out of memory issue while importing in ODI 10g.
    Thanks in Advance.

    Hi,
    you have to post your question in ODI forum
    Data Integrator
    Suresh

  • When I first activated the iCloud keychain it was working great. But now it doesn't seem to be working on my iPod or iPads, i.e.: a wifi password it was able to use a few days ago over all devices now will only automatically work on the MacBook?

    When I first activated iCloud keychain on my stuff (MacBook Pro, iPod and 2 iPads) it was working great and the all logged in to a wifi network that I had only used the password for on the MacBook. But yesterday the others all started asking for the password again (which I unfortunately don't remember and the friend who had it has recentlly had a stroke and also cannot remember it). I've tried turning iCloud keychain off and then back on again, but to no avail. Any thoughts would be appreciated.

    What probally currputed is the battery, all type of devices do this when the battery gose out. and when it only lights up when pulged in that a sign of a bad battery. click here for support on a replacment battery. Hey dose maybe this page or this page will help.

  • I set up a location based reminder in notification last week to test it out.  Worked great, but now I cannot get rid of it.  It does not show up in any list on the notifications pages, but can be found in search.  How can I get rid of this notification?

    Last week I set up a location based reminder in notifications to test it out.  Worked great.  However, I can't get rid of it.  It does not show up on any of the pages, either reminders or completed.  I can search and find it, shows it should be in reminders page, but it is not there for me to remove.  Any ideas?

    Sometimes a problem with Firefox may be a result of malware installed on your computer, that you may not be aware of.
    You can try these free programs to scan for malware, which work with your existing antivirus software:
    * [http://www.microsoft.com/security/scanner/default.aspx Microsoft Safety Scanner]
    * [http://www.malwarebytes.org/products/malwarebytes_free/ MalwareBytes' Anti-Malware]
    * [http://support.kaspersky.com/faq/?qid=208283363 TDSSKiller - AntiRootkit Utility]
    * [http://www.surfright.nl/en/hitmanpro/ Hitman Pro]
    * [http://www.eset.com/us/online-scanner/ ESET Online Scanner]
    [http://windows.microsoft.com/MSE Microsoft Security Essentials] is a good permanent antivirus for Windows 7/Vista/XP if you don't already have one.
    Further information can be found in the [[Troubleshoot Firefox issues caused by malware]] article.
    Did this fix your problems? Please report back to us!

  • I just downloaded Mountain Lion and everything is working great. But i keep getting an error in the app store and i can't download 'Pages"

    I just downloaded Mountain Lion and everything is working great. But i keep getting an error in the app store and i can't download 'Pages' or any other apps. I keep getting an "error" and it says credit card processing is temporarily unavailable......help

    Try deleting the cache associated with the App Store.
    Quit the App Store if it's open.
    Open the Finder. From the Finder menu bar click Go > Go to Folder
    Type this exactly as you see it here:
    ~/Library/Caches/com.apple.appstore/Cache.db
    Click Go
    Move the Cache.db file to the Trash.
    Launch the App Store. See if that made a difference...

Maybe you are looking for