Note: This is a public test instance of Red Hat Bugzilla. The data contained within is a snapshot of the live data so any changes you make will not be reflected in the production Bugzilla. Email is disabled so feel free to test any aspect of the site that you want. File any problems you find or give feedback at bugzilla.redhat.com.

Bug 107476

Summary: shadow-utils-4.0.3-9.src.rpm does not build agains 0.95
Product: [Fedora] Fedora Reporter: Pasi Pirhonen <upi>
Component: shadow-utilsAssignee: Nalin Dahyabhai <nalin>
Status: CLOSED RAWHIDE QA Contact: David Lawrence <dkl>
Severity: medium Docs Contact:
Priority: medium    
Version: rawhide   
Target Milestone: ---   
Target Release: ---   
Hardware: All   
OS: Linux   
Whiteboard:
Fixed In Version: 4.0.3-12 Doc Type: Bug Fix
Doc Text:
Story Points: ---
Clone Of: Environment:
Last Closed: 2003-10-22 18:27:02 UTC Type: ---
Regression: --- Mount Type: ---
Documentation: --- CRM:
Verified Versions: Category: ---
oVirt Team: --- RHEL 7.3 requirements from Atomic Host:
Cloudforms Team: --- Target Upstream Version:
Embargoed:
Bug Depends On:    
Bug Blocks: 100643    

Description Pasi Pirhonen 2003-10-19 00:11:07 UTC
From Bugzilla Helper:
User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.4) Gecko/20030910
Debian/1.4-4.he-1

Description of problem:
Following makes it compile again. Problem is that $(top_builddir) gets appended
twice for $(MKINSTALDIRS) for actual Makefile.


--- shadow-4.0.3/po/Makefile.in.in.orig 2002-03-13 21:03:23.000000000 +0200
+++ shadow-4.0.3/po/Makefile.in.in      2003-10-19 01:47:26.000000000 +0300
@@ -29,7 +29,7 @@
 INSTALL = @INSTALL@
 INSTALL_DATA = @INSTALL_DATA@
 MKINSTALLDIRS = @MKINSTALLDIRS@
-mkinstalldirs = $(SHELL) `case "$(MKINSTALLDIRS)" in /*) echo
"$(MKINSTALLDIRS)" ;; *) echo "$(top_builddir)/$(MKINSTALLDIRS)" ;; esac`
+mkinstalldirs = $(SHELL) `case "$(MKINSTALLDIRS)" in /*) echo
"$(MKINSTALLDIRS)" ;; *) echo "$(MKINSTALLDIRS)" ;; esac`

 CC = @CC@
 GMSGFMT = @GMSGFMT@




Version-Release number of selected component (if applicable):
shadow-utils-4.0.3-9

How reproducible:
Always

Steps to Reproduce:
1. Try to rebuild
2.
3.
    

Actual Results:  Fails to rebuild

Additional info:

Comment 1 Nalin Dahyabhai 2003-10-22 18:27:02 UTC
Depending on the version of autoconf you have installed, the change above is
either necessary for the build to work (2.57), or causes it to fail (2.52).  For
now, I think overriding MKINSTALLDIRS on the %makeinstall command line is the
safest thing to do, as it works in both cases.